1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 09:38:46 +10:00
collapseos/recipes/rc2014/zasm/cfsin/hello.asm

12 lines
147 B
NASM
Raw Normal View History

2019-06-04 03:34:16 +10:00
#include "user.h"
.org USER_CODE
ld hl, sAwesome
call printstr
xor a ; success
ret
sAwesome:
.db "Assembled from a RC2014", 0x0d, 0x0a, 0