1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-23 08:20:19 +10:00
collapseos/emul/cfsin/hello.asm
2019-12-31 13:34:24 -05:00

11 lines
143 B
NASM

.inc "user.h"
.org USER_CODE
ld hl, sAwesome
call printstr
xor a ; success
ret
sAwesome:
.db "Assembled from the shell", 0x0d, 0x0a, 0