summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/fr30/andccr.cgs
blob: 7f8f99e25f58d6e4463d636a8e052e450d0d2cc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# fr30 testcase for andccr $u8
# mach(): fr30

	.include "testutils.inc"

	START

	.text
	.global andccr
andccr:
	set_cc		0x00
	set_i			0
	set_s_system
	andccr      	0xff
	test_cc		0 0 0 0
	test_i		0
	test_s_system

	set_cc		0x0f
	set_i			1
	set_s_user
	andccr      	0xff
	test_cc		1 1 1 1
	test_i		1
	test_s_user

	set_cc		0x0f
	set_i			1
	set_s_user
	andccr      	0xaa
	test_cc		1 0 1 0
	test_i		0
	test_s_user

	set_cc		0x0f
	set_i			1
	set_s_user
	andccr      	0xc0
	test_cc		0 0 0 0
	test_i		0
	test_s_system

	set_cc		0x0f
	set_i			1
	set_s_user
	andccr      	0x3f		; no effect
	test_cc		1 1 1 1
	test_i		1
	test_s_user

	pass