Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of KaiserKatze

KaiserKatze

KaiserKatze has asked 2 questions and find answers to 5 problems.

Stats

165
EtPoint
55
Vote count
2
questions
5
answers

About

    .data
message: .asciiz "Hello, World!"

    .text
main:
    li  $v0, 4
    la  $a0, message
    syscall
    
    li  $v0, 10
    syscall