Created
June 7, 2013 16:23
-
-
Save mwadams/5730505 to your computer and use it in GitHub Desktop.
Updated snippet of code
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
let programInstructionMemory = [| | |
"load r0 1" | |
"add r0 1" | |
"write 0 r0" | |
"read r1 0" | |
"load r2 4" | |
"compare r0 r2" | |
"jumplt 2" | |
"exit" | |
"load r1 4" | |
"sub r0 2" | |
"exit" | |
|] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment