Sha256: 82af67990b6c446ff51ba70516cbf1bc5e6dc970c006153164ac654451d8a229
Contents?: true
Size: 317 Bytes
Versions: 7
Compression:
Stored size: 317 Bytes
Contents
.data hw: .asciiz "Hello, World!" .text main: la $a0, hw #load the address of hw into $a0 li $v0, 4 #load 4 into $v0 syscall #perform the print_string syscall li $v0, 10 #load 10 into $v0 syscall #perform the exit syscall
Version data entries
7 entries across 7 versions & 1 rubygems