Created
January 12, 2011 12:50
-
-
Save RichardMarks/776122 to your computer and use it in GitHub Desktop.
Hello World in ECPU Assembly
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
; hello.ecpua | |
inc 0x0A | |
print ; newline | |
inc 0x3E | |
print ; H | |
inc 0x1D | |
print ; e | |
inc 0x07 | |
print ; l | |
print ; l | |
inc 0x03 | |
print ; o | |
dec 0x4F | |
print ; (space) | |
inc 0x37 | |
print ; W | |
inc 0x18 | |
print ; o | |
inc 0x03 | |
print ; r | |
dec 0x06 | |
print ; l | |
dec 0x08 | |
print ; d | |
dec 0x5A | |
print ; newline | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment