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

	.include "compact/testutils.inc"

	start

	.global orb
init:
	# Init GBR and R0.
	mov #30, r0
	ldc r0, gbr	
	mov #40, r0

orb:
	or.b #0, @(r0, gbr)
	or.b #170, @(r0, gbr)
	or.b #0, @(r0, gbr)
	or.b #255, @(r0, gbr)

okay:
	pass