scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 9b6ccd000cc147ffbfa7ca6b256300ffbc2bbbc7
parent 2a312f425502701db11c914b4ac53c5376787b0b
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 11 Dec 2017 15:25:36 +0000

[lib/crt] Add basic crt for z80-scc-none

This is only a placeholder for the actual z80 crt.

Diffstat:
Alib/crt/z80-scc-none/crt.s | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/lib/crt/z80-scc-none/crt.s b/lib/crt/z80-scc-none/crt.s @@ -0,0 +1,8 @@ + .file "crt.s" + + .text + .global _start +_start: + call main +# ex %de,%hl + call exit