xref: /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/frv/mwtacc.cgs (revision f8cf1a9151c7af1cb0bd8b09c13c66bca599c027)
1# frv testcase for mwtacc $FRinti,$ACC40k
2# mach: all
3
4	.include "testutils.inc"
5
6	start
7
8	.global mwtacc
9mwtacc:
10	test_accg_immed	0x00,accg0
11	test_acc_immed	0x00000000,acc0
12
13	set_fr_iimmed	0xdead,0xbeef,fr10
14	mwtacc		fr10,acc0
15	test_accg_immed	0x00,accg0
16	test_acc_immed	0xdeadbeef,acc0
17
18	set_fr_iimmed	0x1234,0x5678,fr10
19	mwtacc		fr10,acc0
20	test_accg_immed	0x00,accg0
21	test_acc_immed	0x12345678,acc0
22
23	pass
24