Skip to content

Instantly share code, notes, and snippets.

@danilo-alm
Created August 31, 2023 12:34
Show Gist options
  • Save danilo-alm/691566ce80417f8d4dc9b452150ebe18 to your computer and use it in GitHub Desktop.
Save danilo-alm/691566ce80417f8d4dc9b452150ebe18 to your computer and use it in GitHub Desktop.
MIPS Hello World
.text
main:
li $v0, 4
la $a0, msg
syscall
li $v0, 10
syscall
.data
msg: .asciiz "Hello, world!\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment