24 lines
246 B
Text
24 lines
246 B
Text
# cr16 testcase for pop RA insns.
|
|
# mach: cr16
|
|
|
|
.include "testutils.inc"
|
|
|
|
start
|
|
|
|
.global pop3
|
|
pop3:
|
|
movd $0x1006, (sp)
|
|
movd $0xabcd, (r3,r2)
|
|
stord (r3,r2), 0x1006
|
|
pop RA
|
|
|
|
|
|
cmpd $0xabcd, (ra)
|
|
beq ok
|
|
br not_ok
|
|
not_ok:
|
|
fail
|
|
ok:
|
|
pass
|
|
|
|
|