about summary refs log tree commit diff
path: root/mips/chapter-2/exercise-1/d.s
diff options
context:
space:
mode:
Diffstat (limited to 'mips/chapter-2/exercise-1/d.s')
-rw-r--r--mips/chapter-2/exercise-1/d.s13
1 files changed, 0 insertions, 13 deletions
diff --git a/mips/chapter-2/exercise-1/d.s b/mips/chapter-2/exercise-1/d.s
deleted file mode 100644
index e20cd4c..0000000
--- a/mips/chapter-2/exercise-1/d.s
+++ /dev/null
@@ -1,13 +0,0 @@
-# print t3
-	.text
-main:
-	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