about summary refs log tree commit diff
path: root/lang/mips/chapter-2/exercise-1/s.s
blob: 07c8a12a3a16a897d51d5e1ce4a3cdd0834b66f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# s5 *= pi
	.text
main:
	li	$s5,	420		# s5 = 420
	mul	$s5,	$s5,	3	# s5 *= 3

	li	$v0,	1		# print integer
	move	$a0,	$s5		# at s5
	syscall

	li	$v0,	11		# print character
	li	$a0,	10		# newline
	syscall

	li	$v0,	10		# terminate program run
	syscall