Skip to content

Instantly share code, notes, and snippets.

@igorw
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save igorw/efd29bf9538b2c4f4b6d to your computer and use it in GitHub Desktop.
Save igorw/efd29bf9538b2c4f4b6d to your computer and use it in GitHub Desktop.
# data
store 0 "Hello, world of spaces!"
# p = 0
push 0
label 3 # beginning
# *p
dup
retrieve
# if (*p)
dup
jumpz 23 # exit
# write(*p)
write_char
# p++
push 1
add
jump 3 # beginning
label 23 # exit
write_char 10
write_char 13
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment