about summary refs log tree commit diff
path: root/mips/chapter-2/exercise-1/j.s
diff options
context:
space:
mode:
Diffstat (limited to 'mips/chapter-2/exercise-1/j.s')
-rw-r--r--mips/chapter-2/exercise-1/j.s16
1 files changed, 0 insertions, 16 deletions
diff --git a/mips/chapter-2/exercise-1/j.s b/mips/chapter-2/exercise-1/j.s
deleted file mode 100644
index 95eccc7..0000000
--- a/mips/chapter-2/exercise-1/j.s
+++ /dev/null
@@ -1,16 +0,0 @@
-# t7 = abs(t0)
-	.text
-main:
-	li	$t0,	-420		# t0 = -420
-	abs	$t7,	$t0		# t7 = abs(t0)
-
-	li	$v0,	1		# print integer
-	move	$a0,	$t7		# at t7
-	syscall
-
-	li	$v0,	11		# print character
-	li	$a0,	10		# newline
-	syscall
-
-	li	$v0,	10		# terminate program run
-	syscall