diff options
| author | hrydgard <hrydgard@gmail.com> | 2009-04-18 12:27:24 +0000 |
|---|---|---|
| committer | hrydgard <hrydgard@gmail.com> | 2009-04-18 12:27:24 +0000 |
| commit | ee933cb5d4c96bd085ccfe3394f9d9617e647724 (patch) | |
| tree | 0a490cd539aa42808a2050a901b41caaadfdcffc /Source/DSPTool/Testdata | |
| parent | e7e4ef4481d1c5dcce6463414d815843ae15b8e2 (diff) | |
DSPtool: Better code comparer + cmdline interface added. header generator bugfixed. dsp_test.S now matches the binary.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2994 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/DSPTool/Testdata')
| -rw-r--r-- | Source/DSPTool/Testdata/dsp_test.S | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/DSPTool/Testdata/dsp_test.S b/Source/DSPTool/Testdata/dsp_test.S index 11de8ff33e..8fbbe0cf2e 100644 --- a/Source/DSPTool/Testdata/dsp_test.S +++ b/Source/DSPTool/Testdata/dsp_test.S @@ -429,15 +429,15 @@ do_dma: sr @DSBL, $r1a
wait_dma:
LRS $ACL1, @DSCR
- andf $acl1, #0x0004
- JNZ wait_dma
+ andcf $acl1, #0x0004
+ JLZ wait_dma
RET
wait_for_dsp_mbox:
lrs $ACL1, @DMBH
- andf $acl1, #0x8000
- jnz wait_for_dsp_mbox
+ andcf $acl1, #0x8000
+ jlz wait_for_dsp_mbox
ret
wait_for_cpu_mbox:
@@ -489,8 +489,8 @@ irq7: irq:
lrs $ACL1, @DMBH
- andf $acl1, #0x8000
- jnz irq
+ andcf $acl1, #0x8000
+ jlz irq
si @DMBH, #0x8BAD
sr @DMBL, $r0b
;sr @DMBL, $acl0
|
