diff options
Diffstat (limited to 'mips/chapter-3/exercise-15.s')
-rw-r--r-- | mips/chapter-3/exercise-15.s | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/mips/chapter-3/exercise-15.s b/mips/chapter-3/exercise-15.s deleted file mode 100644 index 3a16b14..0000000 --- a/mips/chapter-3/exercise-15.s +++ /dev/null @@ -1,19 +0,0 @@ -# print(int('204', 6)) - .text -main: - li $t0, 0 # t0 = 0 - addi $t0, $t0, 2 # t0 += 2 - li $t1, 36 # t1 = 6 * 6 - mul $t0, $t0, $t1 # t0 *= t1 - addi $t0, $t0, 4 # t0 += 4 - - li $v0, 1 # print integer - move $a0, $t0 # at t0 - syscall - - li $v0, 11 # print character - li $a0, 10 # newline - syscall - - li $v0, 10 # terminate - syscall |