Moved example into own sub folder and prefixed all.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 15s

This commit is contained in:
Willem Cazander 2024-07-14 18:36:59 +02:00
parent de377cf420
commit a1ae7248ea
26 changed files with 285 additions and 282 deletions

View 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