Skip to content

Instantly share code, notes, and snippets.

@giuscri
Last active August 29, 2015 14:00
Show Gist options
  • Save giuscri/7ab7b36e14d10c5c466c to your computer and use it in GitHub Desktop.
Save giuscri/7ab7b36e14d10c5c466c to your computer and use it in GitHub Desktop.
## foo.asm
.text
.globl main
main:
## Load *theFloat into $f0 ...
l.s $f0, theFloat
nop
nop
exit:
## Jump back to the caller ...
jr $ra
nop
.data
theFloat : .float 1.23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment