1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-10-07 06:50:55 +11:00
collapseos/tools/emul/cfsin/hello.asm

13 lines
147 B
NASM
Raw Normal View History

.equ printstr 0x3c
.org 0x9000
ld hl, sAwesome
call printstr
xor a ; success
ret
sAwesome:
.db "Assembled from the shell", 0x0d, 0x0a, 0