aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/example-synacor/push-pop.s
blob: b8199c5d34e46b983c577429c25d6a2f354f1f9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# check the PUSH & POP insns.
# mach: example

.include "testutils.inc"

	start
	JMP 3
	HALT

	PUSH 1
	SET r0, 3
	PUSH r0
	POP r1
	POP r2
	EQ r7, r0, 3
	JF r7, 2
	EQ r7, r1, 3
	JF r7, 2
	EQ r7, r2, 1
	JF r7, 2

	pass