Moved example into own sub folder and prefixed all.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 15s
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 15s
This commit is contained in:
parent
de377cf420
commit
a1ae7248ea
26 changed files with 285 additions and 282 deletions
20
src/example/hello-make4msx/hello.mac
Normal file
20
src/example/hello-make4msx/hello.mac
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue