Created
October 18, 2010 21:20
-
-
Save anonymous/633086 to your computer and use it in GitHub Desktop.
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
set 1 | |
sta result | |
next, lda stdin | |
brz done | |
brp skip | |
neg | |
skip, sta value | |
mlt result | |
sta result | |
lda value | |
dec | |
brp skip | |
br next | |
done, lda result | |
sta stdout | |
hlt | |
value, noop | |
result,noop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment