1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-16 14:38:47 +10:00
collapseos/emul/forth/stagec.asm
2020-03-26 12:12:11 -04:00

12 lines
176 B
NASM

.equ RAMSTART 0xe800
.equ HERE_INITIAL CODE_END ; override
.equ LATEST CODE_END ; override
.equ STDIO_PORT 0x00
init:
di
; setup stack
ld sp, 0xffff
call forthMain
halt