1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 07:08:46 +10:00
collapseos/apps/basic/glue.asm
Virgil Dupras 8d46895dd3 lib/parse: decimal ending with a whitespace are now valid
Also, make empty strings be parsed as invalid by parseDecimal.
2019-11-13 22:10:06 -05:00

19 lines
235 B
NASM

; *** Requirements ***
; addHL
; printstr
; printcrlf
; stdioReadLine
; strncmp
;
.inc "user.h"
.inc "err.h"
.org USER_CODE
jp basStart
.inc "lib/util.asm"
.inc "lib/parse.asm"
.equ BAS_RAMSTART USER_RAMSTART
.inc "basic/main.asm"