mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 06:50:56 +11:00
f4b6c7637d
scas, it's not needed any more.
12 lines
144 B
NASM
12 lines
144 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
|
|
|