msxbuild/src/example/hello-make4msx/hello.mac
Willem a1ae7248ea
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 15s
Moved example into own sub folder and prefixed all.
2024-07-14 18:36:59 +02:00

20 lines
200 B
Text

title M80 MAKE Hello world
.Z80
WRITESTR EQU 9h
BDOS EQU 5h
ASEG
ORG 0100H
MAIN:
LD C,WRITESTR
LD DE,TXT_HELLO
CALL BDOS
RET
w
TXT_HELLO:
DB "MAKE: Hello MSX world...@ASM$"
END
DSEG