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

	.include "compact/testutils.inc"

	start
	mov #40, r2
	shll8 r2
	mov #3, r1
	mov #0, r0
	or #170, r0
	mov r0, r3
	mov r2, r0
	mov.b r3, @(r0, r1)

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

okay:	
	pass

wrong:
	fail