Created
June 7, 2013 16:11
-
-
Save mwadams/5730424 to your computer and use it in GitHub Desktop.
Snippet of computer.fs
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
(* THIS IS YOUR PROGRAM *) | |
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" | |
"exit" | |
|] | |
(* THIS IS THE END OF YOUR PROGRAM *) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment