mirror of
https://github.com/tiennm99/KTMT.git
synced 2026-06-09 04:18:31 +00:00
21 lines
289 B
NASM
21 lines
289 B
NASM
.data
|
|
a: .word 0
|
|
i: .asciiz "Input a: "
|
|
t: .asciiz "Computer Architecture is so easy!"
|
|
f: .asciiz "you are right!"
|
|
.text
|
|
.globl main
|
|
main:
|
|
la $a0, i
|
|
li $v0, 4
|
|
syscall
|
|
li $v0, 5
|
|
syscall
|
|
bgez $v0, true
|
|
la $a0, f
|
|
j exit
|
|
true: la $a0, t
|
|
exit: li $v0, 4
|
|
syscall
|
|
li $v0, 10
|
|
syscall |