about summary refs log tree commit diff
path: root/mips/chapter-3/exercise-16.s
diff options
context:
space:
mode:
Diffstat (limited to 'mips/chapter-3/exercise-16.s')
-rw-r--r--mips/chapter-3/exercise-16.s19
1 files changed, 0 insertions, 19 deletions
diff --git a/mips/chapter-3/exercise-16.s b/mips/chapter-3/exercise-16.s
deleted file mode 100644
index 1aa9dec..0000000
--- a/mips/chapter-3/exercise-16.s
+++ /dev/null
@@ -1,19 +0,0 @@
-# print(int('204', 5))
-	.text
-main:
-	li	$t0,	0		# t0 = 0
-	addi	$t0,	$t0,	2	# t0 += 2
-	li	$t1,	25		# t1 = 5 * 5
-	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