From 67bb27e9f5beec4d8ca0a6c29f045d5f23d6f40f Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sun, 28 Feb 2021 17:25:57 +0700 Subject: [lang] Reorganize language learning archive --- mips/chapter-2/exercise-1/a.s | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 mips/chapter-2/exercise-1/a.s (limited to 'mips/chapter-2/exercise-1/a.s') diff --git a/mips/chapter-2/exercise-1/a.s b/mips/chapter-2/exercise-1/a.s deleted file mode 100644 index 4da4645..0000000 --- a/mips/chapter-2/exercise-1/a.s +++ /dev/null @@ -1,20 +0,0 @@ -# t3 = t4 + t5 - t6 - .text -main: - li $t4, 4 # t4 = 4 - li $t5, 5 # t5 = 5 - li $t6, 6 # t6 = 6 - - add $t3, $t4, $t5 # t3 = t4 + t5 - sub $t3, $t3, $t6 # t3 -= t6 - - li $v0, 1 # print integer - move $a0, $t3 # at t3 - syscall - - li $v0, 11 # print character - li $a0, 10 # newline - syscall - - li $v0, 10 # terminate program run - syscall -- cgit 1.4.1