diff options
| author | Tilka <tilkax@gmail.com> | 2022-05-29 00:16:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-29 00:16:23 +0100 |
| commit | 3dbc18060bc6f15eeaa3c0e4de907f8a06efa2bf (patch) | |
| tree | 4a1429929a48519596f2fea7326e6f64d3a878d8 /Source/DSPSpy | |
| parent | 57e444cd5d8a0f189e91156a730fb6a5f33110c5 (diff) | |
| parent | bd3173e344912d0b2031c46407e2f18cf6a059fd (diff) | |
Merge pull request #10694 from Pokechu22/dsp-assembler-error-messages-etc
DSPAssembler: Rework errors and warnings, and related cleanup
Diffstat (limited to 'Source/DSPSpy')
| -rw-r--r-- | Source/DSPSpy/tests/arith_test.ds | 3 | ||||
| -rw-r--r-- | Source/DSPSpy/tests/cond_test.ds | 8 | ||||
| -rw-r--r-- | Source/DSPSpy/tests/ld_test.ds | 4 | ||||
| -rw-r--r-- | Source/DSPSpy/tests/neg_test.ds | 3 |
4 files changed, 11 insertions, 7 deletions
diff --git a/Source/DSPSpy/tests/arith_test.ds b/Source/DSPSpy/tests/arith_test.ds index 96884c6bbc..f93f428b06 100644 --- a/Source/DSPSpy/tests/arith_test.ds +++ b/Source/DSPSpy/tests/arith_test.ds @@ -138,3 +138,6 @@ sub $acc1, $acc0 set16 call send_back ; 20 + +; We're done, DO NOT DELETE THIS LINE +jmp end_of_test diff --git a/Source/DSPSpy/tests/cond_test.ds b/Source/DSPSpy/tests/cond_test.ds index 151f3e3a9a..411fc73c76 100644 --- a/Source/DSPSpy/tests/cond_test.ds +++ b/Source/DSPSpy/tests/cond_test.ds @@ -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 diff --git a/Source/DSPSpy/tests/ld_test.ds b/Source/DSPSpy/tests/ld_test.ds index 045680c877..4857b61d3e 100644 --- a/Source/DSPSpy/tests/ld_test.ds +++ b/Source/DSPSpy/tests/ld_test.ds @@ -244,5 +244,5 @@ lri $AX1.L, #0x13 nx'ldnm : $AX0.L, $AX1.L, @$AR0 call send_back ; 20 - - +; We're done, DO NOT DELETE THIS LINE +jmp end_of_test diff --git a/Source/DSPSpy/tests/neg_test.ds b/Source/DSPSpy/tests/neg_test.ds index 57c1610511..63f535bb6a 100644 --- a/Source/DSPSpy/tests/neg_test.ds +++ b/Source/DSPSpy/tests/neg_test.ds @@ -114,4 +114,5 @@ neg $ACC0 set40 call send_back ; 18 - +; We're done, DO NOT DELETE THIS LINE +jmp end_of_test |
