Created
August 31, 2023 12:34
-
-
Save danilo-alm/691566ce80417f8d4dc9b452150ebe18 to your computer and use it in GitHub Desktop.
MIPS Hello World
This file contains 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
.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