Skip to content

Instantly share code, notes, and snippets.

@aarroyoc
Created March 26, 2024 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarroyoc/1cd36c0a36850e69f148d848c6d3435f to your computer and use it in GitHub Desktop.
Save aarroyoc/1cd36c0a36850e69f148d848c6d3435f to your computer and use it in GitHub Desktop.
as main.s -o main.o
ld main.o -o main
./main
.data
mystring: .asciiz "Hello World!\n"
.text
.global __start
__start:
li $a0, 1
la $a1, mystring
li $a2, 13
li $v0, 5001
syscall
li $a0, 3
li $v0, 5058
syscall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment