dolphin/Source/DSPSpy/tests/if_test3.ds

61 lines
783 B
Plaintext
Raw Normal View History

; This test checks the effect of various SR flags over ifg and ifle
include "dsp_base.inc"
lri $IX0, #0x0000
lri $SR, #0x0001
ifl
lri $IX0, #0x1337
call send_back
ifge
lri $IX0, #0x1338
call send_back
lri $IX0, #0x0000
lri $SR, #0x0002
ifl
lri $IX0, #0x1337
call send_back
ifge
lri $IX0, #0x1338
call send_back
lri $IX0, #0x0000
lri $SR, #0x0004
ifl
lri $IX0, #0x1337
call send_back
ifge
lri $IX0, #0x1338
call send_back
lri $IX0, #0x0000
lri $SR, #0x0008
ifl
lri $IX0, #0x1337
call send_back
ifge
lri $IX0, #0x1338
call send_back
lri $IX0, #0x0000
lri $SR, #0x000a
ifl
lri $IX0, #0x1337
call send_back
ifge
lri $IX0, #0x1338
call send_back
; We're done, DO NOT DELETE THIS LINE
jmp end_of_test