aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.c')
-rw-r--r--tests/test.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test.c b/tests/test.c
deleted file mode 100644
index 8eb344a..0000000
--- a/tests/test.c
+++ /dev/null
@@ -1,8 +0,0 @@
-int main()
-{
- volatile int *mem = (int *)0x200;
- *mem = 24;
- for (int i = 0; i < 8; ++i)
- *mem += 2;
- return *mem;
-}