We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 946554c commit 3ceeaa7Copy full SHA for 3ceeaa7
lib/e80.pas
@@ -150,9 +150,7 @@ implementation
150
151
152
procedure inite80; assembler;
153
-(*
154
-@description:
155
-*)
+
156
asm
157
158
TEMP1 = $F5
@@ -592,9 +590,13 @@ procedure inite80; assembler;
592
590
LDA #40 ;So add 40 on
593
591
ADC TEMP1
594
STA TEMP1
595
- LDA #0 ;(with carry)
596
- ADC TEMP1+1
597
- STA TEMP1+1
+ SCC
+ INC TEMP1+1
+; LDA #0 ;(with carry)
+; ADC TEMP1+1
598
+; STA TEMP1+1
599
600
INY ;Increment number
601
STY VALGET ;of bytes done
602
CPY #8 ;8=finished
0 commit comments