summaryrefslogtreecommitdiffstats
path: root/sw/z80_tests/ram/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sw/z80_tests/ram/main.c')
-rw-r--r--sw/z80_tests/ram/main.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/sw/z80_tests/ram/main.c b/sw/z80_tests/ram/main.c
deleted file mode 100644
index 581072b..0000000
--- a/sw/z80_tests/ram/main.c
+++ /dev/null
@@ -1,13 +0,0 @@
-
-void main(void)
-{
- unsigned char j;
- unsigned char *mem;
-
- j = 0;
- mem = (unsigned char *) 0x8200; // somwhere in ram
-
- while (1) {
- *mem = j++;
- }
-}