mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
DSP: Fix assembling x8/x9/xA/xB conditions
The assembler upper-cases the mnemonic internally, so it never would match the lower-case x.
This commit is contained in:
parent
e7f6e19c61
commit
8b52c7315b
2 changed files with 32 additions and 32 deletions
|
@ -213,19 +213,19 @@ test_cond:
|
|||
ADDARN $AR0, $IX0
|
||||
|
||||
LRI $IX0, #0x0100
|
||||
CW 0x0278 ; IFx8
|
||||
IFx8
|
||||
ADDARN $AR0, $IX0
|
||||
|
||||
LRI $IX0, #0x0200
|
||||
CW 0x0279 ; IFx9
|
||||
IFx9
|
||||
ADDARN $AR0, $IX0
|
||||
|
||||
LRI $IX0, #0x0400
|
||||
CW 0x027A ; IFxA
|
||||
IFxA
|
||||
ADDARN $AR0, $IX0
|
||||
|
||||
LRI $IX0, #0x0800
|
||||
CW 0x027B ; IFxB
|
||||
IFxB
|
||||
ADDARN $AR0, $IX0
|
||||
|
||||
LRI $IX0, #0x1000
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue