summaryrefslogtreecommitdiffstats
path: root/sw/z80/loader.asm
diff options
context:
space:
mode:
authorleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-05-02 18:02:06 +0200
committerleleraffa97@hotmail.it <leleraffa97@hotmail.it>2017-05-02 18:02:06 +0200
commit2b59b9528106aced551c85b5f93b28befd1e4b96 (patch)
tree270e634089f8cc3be68908e16fa4d601fd7703a4 /sw/z80/loader.asm
parentBasic sys io setup (diff)
parentfix for sdcc makefile (diff)
downloadz80uPC-2b59b9528106aced551c85b5f93b28befd1e4b96.tar.gz
z80uPC-2b59b9528106aced551c85b5f93b28befd1e4b96.zip
Merge remote-tracking branch 'origin/naopross' into atlas
Diffstat (limited to '')
-rw-r--r--sw/z80/loader.asm18
1 files changed, 0 insertions, 18 deletions
diff --git a/sw/z80/loader.asm b/sw/z80/loader.asm
deleted file mode 100644
index 85f5abe..0000000
--- a/sw/z80/loader.asm
+++ /dev/null
@@ -1,18 +0,0 @@
-; C crt0 loader
-;
- module crt0
-
-; general scope declarations
- extern _main ; C code
-
-; startup code
- org 0000h ; reset vector
- jp _start
-
-_start:
- ld sp, 0xffff
- call _main
- jp _exit
-
-_exit:
- ret