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, 19 insertions, 0 deletions
diff --git a/mips/chapter-3/exercise-16.s b/mips/chapter-3/exercise-16.s
new file mode 100644
index 0000000..1aa9dec
--- /dev/null
+++ b/mips/chapter-3/exercise-16.s
@@ -0,0 +1,19 @@
+# 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