Test SUBI omsn

This commit is contained in:
Andrew Cagney 1997-11-17 22:36:19 +00:00
parent 8d5306e718
commit 891703e5e8
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
.include "t-macros.i"
start
;; Check carry/overflow set for 0x8000 - 1 -> 1:0x7fff
ldi r10,#0x8000
ldi r6,#0x8004
mvtc r6,cr0
test_subi:
SUBI r10,#1 || nop
mvfc r6,cr0
check1 r10 0x7FFF
check1 r6 0x8005 ;<--- Carry should be ON.
exit0