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