1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 07:18:45 +10:00
collapseos/tools/emul/cfsin/hello.asm
2019-06-03 11:24:52 -04:00

12 lines
148 B
NASM

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