summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/sh64/compact/movb4.cgs
blob: d30a7a8641f139555876fe8a1af42260abf3f24e (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
# sh testcase for mov.b r0, @($imm8, gbr) -*- Asm -*-
# mach: all
# as: -isa=shcompact
# ld: -m shelf32

	.include "compact/testutils.inc"

	start
	mov #0, r0
	or #170, r0
	mov r0, r3
	mov #30, r2
	ldc r2, gbr
	mov.b r0, @(40, gbr)

	# Load the value back into a different register.
	mov.b @(40, gbr), r0
	# Check the lowest order byte matches the stored value.
	and #255, r0
	cmp/eq r0, r3
	bf wrong

okay:	
	pass

wrong:
	fail