Created
March 31, 2016 08:20
-
-
Save joanmolinas/3e544f8230a0cd6ea26b3ac81523ff49 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
.include "macros.s" | |
.include "crt0.s" | |
.data | |
F: .word -1 | |
G: .word -2 | |
I: .word 0 | |
.text | |
main: | |
MOVI R6, 0 | |
$MOVEI R1, F | |
LD R1, 0(R1) | |
$MOVEI R2, G | |
LD R2, 0(R2) | |
CMPLE R3, R1, R2 | |
BZ R3, fi | |
MOVI R6, 1 | |
$MOVEI R5, I | |
ST 0(R5), R6 | |
fi: | |
HALT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment