File tree 1 file changed +0
-6
lines changed
1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -681,7 +681,6 @@ void PceCpu::TDD()
681
681
uint16_t dst = _operand2;
682
682
uint16_t length = _operand3;
683
683
684
- uint32_t count = 0 ;
685
684
do {
686
685
DummyRead ();
687
686
uint8_t value = MemoryRead (src);
@@ -694,7 +693,6 @@ void PceCpu::TDD()
694
693
src--;
695
694
dst--;
696
695
697
- count++;
698
696
length--;
699
697
} while (length);
700
698
@@ -737,7 +735,6 @@ void PceCpu::TII()
737
735
uint16_t dst = _operand2;
738
736
uint16_t length = _operand3;
739
737
740
- uint32_t count = 0 ;
741
738
do {
742
739
DummyRead ();
743
740
uint8_t value = MemoryRead (src);
@@ -750,7 +747,6 @@ void PceCpu::TII()
750
747
src++;
751
748
dst++;
752
749
753
- count++;
754
750
length--;
755
751
} while (length);
756
752
@@ -765,7 +761,6 @@ void PceCpu::TIN()
765
761
uint16_t dst = _operand2;
766
762
uint16_t length = _operand3;
767
763
768
- uint32_t count = 0 ;
769
764
do {
770
765
DummyRead ();
771
766
uint8_t value = MemoryRead (src);
@@ -777,7 +772,6 @@ void PceCpu::TIN()
777
772
778
773
src++;
779
774
780
- count++;
781
775
length--;
782
776
} while (length);
783
777
You can’t perform that action at this time.
0 commit comments