Skip to content

Instantly share code, notes, and snippets.

@joanmolinas
Created March 31, 2016 08:20
Show Gist options
  • Save joanmolinas/3e544f8230a0cd6ea26b3ac81523ff49 to your computer and use it in GitHub Desktop.
Save joanmolinas/3e544f8230a0cd6ea26b3ac81523ff49 to your computer and use it in GitHub Desktop.
.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