mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 06:30:55 +11:00
cdd0b64570
Instead of expecting a `USER_CODE` symbol to be set, we expect `.org` to be set in all userspace glue code. This gives us more flexibility with regards to how we manage that. Moreover, instead of making `USER_RAMSTART` mandatory, we make it default to the end of the binary, which is adequate in a majority of cases. Will be useful for my upcoming mega-commit... :)
10 lines
128 B
NASM
10 lines
128 B
NASM
.inc "user.h"
|
|
ld hl, sAwesome
|
|
call printstr
|
|
xor a ; success
|
|
ret
|
|
|
|
sAwesome:
|
|
.db "Assembled from the shell", 0x0d, 0x0a, 0
|
|
|