summaryrefslogtreecommitdiffstats
path: root/sw/z80/tests/ram/build/main.asm
diff options
context:
space:
mode:
Diffstat (limited to 'sw/z80/tests/ram/build/main.asm')
-rw-r--r--sw/z80/tests/ram/build/main.asm59
1 files changed, 0 insertions, 59 deletions
diff --git a/sw/z80/tests/ram/build/main.asm b/sw/z80/tests/ram/build/main.asm
deleted file mode 100644
index f3b8add..0000000
--- a/sw/z80/tests/ram/build/main.asm
+++ /dev/null
@@ -1,59 +0,0 @@
-;--------------------------------------------------------
-; File Created by SDCC : free open source ANSI-C Compiler
-; Version 3.6.0 #9615 (Linux)
-;--------------------------------------------------------
- .module main
- .optsdcc -mz80
-
-;--------------------------------------------------------
-; Public variables in this module
-;--------------------------------------------------------
- .globl _main
-;--------------------------------------------------------
-; special function registers
-;--------------------------------------------------------
-;--------------------------------------------------------
-; ram data
-;--------------------------------------------------------
- .area _DATA
-;--------------------------------------------------------
-; ram data
-;--------------------------------------------------------
- .area _INITIALIZED
-;--------------------------------------------------------
-; absolute external ram data
-;--------------------------------------------------------
- .area _DABS (ABS)
-;--------------------------------------------------------
-; global & static initialisations
-;--------------------------------------------------------
- .area _HOME
- .area _GSINIT
- .area _GSFINAL
- .area _GSINIT
-;--------------------------------------------------------
-; Home
-;--------------------------------------------------------
- .area _HOME
- .area _HOME
-;--------------------------------------------------------
-; code
-;--------------------------------------------------------
- .area _CODE
-;main.c:2: void main(void)
-; ---------------------------------
-; Function main
-; ---------------------------------
-_main::
-;main.c:10: while (1) {
- ld c,#0x00
-00102$:
-;main.c:11: *mem = j++;
- ld b,c
- inc c
- ld hl,#0x8200
- ld (hl),b
- jr 00102$
- .area _CODE
- .area _INITIALIZER
- .area _CABS (ABS)