1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-22 09:20:20 +10:00
collapseos/recipes/rc2014/zasm/cfsin/hello.asm
Virgil Dupras f4b6c7637d zasm: rename #inc to .inc
scas, it's not needed any more.
2019-10-06 14:32:23 -04:00

12 lines
143 B
NASM

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