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