Skip to content

Instantly share code, notes, and snippets.

@RichardMarks
Created January 12, 2011 12:50
Show Gist options
  • Save RichardMarks/776122 to your computer and use it in GitHub Desktop.
Save RichardMarks/776122 to your computer and use it in GitHub Desktop.
Hello World in ECPU Assembly
; 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