about summary refs log tree commit diff
path: root/mips/chapter-2/exercise-1/a.s
diff options
context:
space:
mode:
Diffstat (limited to 'mips/chapter-2/exercise-1/a.s')
-rw-r--r--mips/chapter-2/exercise-1/a.s20
1 files changed, 0 insertions, 20 deletions
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