We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.data str: .asciiz "Hello, World!\n"
.text main: la a0, str # Load address of string into a0 li a7, 4 # Syscall code for print_string ecall # Make the system call
li a7, 10 # Syscall code for exit ecall