about summary refs log tree commit diff
path: root/lang/mips/chapter-2/exercise-1/a.s
blob: 4da4645d7bf137ef02296099e3fc0eb14dae696c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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