-
-
Save ddevault/329e640a682fb05af195 to your computer and use it in GitHub Desktop.
This file contains 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
.nolist | |
#include "macros.inc" | |
#include "stdio.inc" | |
.list | |
; Header | |
.db 0, 50 | |
; Program | |
.org 0 | |
kld hl, helloWorld | |
stdio(printLine) | |
ret | |
helloWorld: | |
.db "Hello, world!", 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment