Created
October 24, 2023 15:17
-
-
Save svofski/321a21b6e0a2135f0d542afbe893ff65 to your computer and use it in GitHub Desktop.
vector-06c and generic cp/m hellorld
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 🐟 (try me) | |
; 8080 assembler code | |
.project hellorld.com | |
bdos equ 5 | |
.org 100h | |
lxi d, msg | |
mvi c, 9 | |
call bdos | |
ret | |
msg: | |
db 'Hellorld',0dh,0ah,'$' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment