UnitTests: Update DSP test text for old renames
This change makes assembling DSPTestText match DSPTestBinary, though HermesText doesn't yet match HermesBinary. The test data was originally added on April 18, 2009 ine7e4ef4481
. Then, set16 and set40 were swapped on April 22, 200989178f411c
, which updated the DSPSpy version of dsp_code, but not the version in DSPTool used for testing. So, when the test was made, the assembled data matched the text, but a few days after it no longer did. Similarly, on Jul 7, 2009 in1654c582ab
the conditional instructions were adjusted, and 0x1706 was changed from JRL to JRNC and 0x0297 was changed from JGE to JC. For what it's worth, devkitPro made the same changes on May 31, 2010 in8a65c85c9b
and updated their version of the asnd ucode (which is this ucode) on June 11, 2011 inb1b8ecab3a
(though this update also includes other feature changes). Note that at the time, they didn't reassemble the ucode unless they made changes to it; the assembled was stored in the repo untilbfb705fe16
~...d20f9bdcfb43260c6c759f4fb98d724931443f93. This fixes the following failures with Hermes: !! 0015 : 8e00 vs 8f00 - set16 vs set40 !! 016f : 8e00 vs 8f00 - set16 vs set40 and with Hermes: !! 0014 : 8e00 vs 8f00 - set16 vs set40 !! 0063 : 8e00 vs 8f00 - set16 vs set40 !! 019b : 1706 vs 1701 - jrnc $AR0 vs jrl $AR0 !! 01bf : 0297 vs 0290 - jc 0x01dc vs jge 0x01dc !! 01d2 : 0297 vs 0290 - jc 0x01dc vs jge 0x01dc Hermes has the remaining failures: !! 027b : 03c0 vs 03a0 - andcf $AC1.M, #0x8000 vs andf $AC1.M, #0x8000 !! 027d : 029d vs 0294 - jlz 0x027a vs jnz 0x027a
This commit is contained in:
parent
d52528a6f0
commit
36769017c0
|
@ -89,7 +89,7 @@ MEM_LO: equ 0x0f7F
|
||||||
CW 0x1305
|
CW 0x1305
|
||||||
CW 0x1306
|
CW 0x1306
|
||||||
|
|
||||||
s40
|
s16
|
||||||
lri $r12, #0x00ff
|
lri $r12, #0x00ff
|
||||||
|
|
||||||
main:
|
main:
|
||||||
|
@ -469,7 +469,7 @@ irq4:
|
||||||
jmp irq
|
jmp irq
|
||||||
irq5:
|
irq5:
|
||||||
; jmp finale
|
; jmp finale
|
||||||
s40
|
s16
|
||||||
mrr $r0d, $r1c
|
mrr $r0d, $r1c
|
||||||
mrr $r0d, $r1e
|
mrr $r0d, $r1e
|
||||||
clr $acc0
|
clr $acc0
|
||||||
|
@ -609,7 +609,7 @@ dma_copy:
|
||||||
|
|
||||||
ret
|
ret
|
||||||
|
|
||||||
send_back_16:
|
send_back_40:
|
||||||
|
|
||||||
cw 0x8e00
|
cw 0x8e00
|
||||||
call send_back
|
call send_back
|
||||||
|
|
|
@ -175,7 +175,7 @@ MEM_SND: equ data_end ; it need 2048 words (4096 bytes)
|
||||||
|
|
||||||
lri $CONFIG, #0xff
|
lri $CONFIG, #0xff
|
||||||
lri $SR,#0
|
lri $SR,#0
|
||||||
s40
|
s16
|
||||||
clr15
|
clr15
|
||||||
m0
|
m0
|
||||||
|
|
||||||
|
@ -256,7 +256,7 @@ sys_command:
|
||||||
jmp recv_cmd
|
jmp recv_cmd
|
||||||
|
|
||||||
run_nexttask:
|
run_nexttask:
|
||||||
s40
|
s16
|
||||||
call wait_for_cpu_mail
|
call wait_for_cpu_mail
|
||||||
lrs $29,@CMBL
|
lrs $29,@CMBL
|
||||||
call wait_for_cpu_mail
|
call wait_for_cpu_mail
|
||||||
|
@ -661,7 +661,7 @@ left_skip2:
|
||||||
|
|
||||||
cmp
|
cmp
|
||||||
|
|
||||||
jrl $AR0 //get_sample or get_sample2 method
|
jrnc $AR0 //get_sample or get_sample2 method
|
||||||
|
|
||||||
sr @COUNTERH_SMP, $ACH1
|
sr @COUNTERH_SMP, $ACH1
|
||||||
sr @COUNTERL_SMP, $ACM1
|
sr @COUNTERL_SMP, $ACM1
|
||||||
|
@ -717,7 +717,7 @@ get_sample2: // slow method
|
||||||
|
|
||||||
// if addr>addr end get a new buffer (if you uses double buffer)
|
// if addr>addr end get a new buffer (if you uses double buffer)
|
||||||
|
|
||||||
jge get_new_buffer
|
jc get_new_buffer
|
||||||
|
|
||||||
// load samples from dma, return $ar2 with the addr to get the samples and return using $ar0 to the routine to process 8-16bits Mono/Stereo
|
// load samples from dma, return $ar2 with the addr to get the samples and return using $ar0 to the routine to process 8-16bits Mono/Stereo
|
||||||
|
|
||||||
|
@ -747,7 +747,7 @@ get_sample: // fast method
|
||||||
// compares if the current address is >= end address to change the buffer or stops
|
// compares if the current address is >= end address to change the buffer or stops
|
||||||
|
|
||||||
cmp
|
cmp
|
||||||
jge get_new_buffer
|
jc get_new_buffer
|
||||||
|
|
||||||
// load the new sample from the buffer
|
// load the new sample from the buffer
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue