Skip to content

Commit 3ceeaa7

Browse files
committed
update
1 parent 946554c commit 3ceeaa7

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

lib/e80.pas

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,7 @@ implementation
150150

151151

152152
procedure inite80; assembler;
153-
(*
154-
@description:
155-
*)
153+
156154
asm
157155

158156
TEMP1 = $F5
@@ -592,9 +590,13 @@ procedure inite80; assembler;
592590
LDA #40 ;So add 40 on
593591
ADC TEMP1
594592
STA TEMP1
595-
LDA #0 ;(with carry)
596-
ADC TEMP1+1
597-
STA TEMP1+1
593+
SCC
594+
INC TEMP1+1
595+
596+
; LDA #0 ;(with carry)
597+
; ADC TEMP1+1
598+
; STA TEMP1+1
599+
598600
INY ;Increment number
599601
STY VALGET ;of bytes done
600602
CPY #8 ;8=finished

0 commit comments

Comments
 (0)