File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -771,7 +771,7 @@ shortcut_table_addr_hi:
771771 and mask1,x
772772 beq :+
773773 lda #0
774- beq @store ; always
774+ SKIP_NEXT_2_BYTE_INSTRUCTION
775775: lda #$FF
776776@store: sta flag
777777
@@ -1288,7 +1288,8 @@ yloop: copy #0, xpos
12881288xloop: ror row
12891289 bcc zero
12901290 lda #MGTK::pencopy
1291- bpl store ; always
1291+ SKIP_NEXT_2_BYTE_INSTRUCTION
1292+ .assert MGTK::notpencopy <> $C0 , error, "Bad BIT skip"
12921293zero: lda #MGTK::notpencopy
12931294store: cmp mode
12941295 beq :+
Original file line number Diff line number Diff line change @@ -329,7 +329,8 @@ repeat:
329329 cmp lbr_copy + LBTK::ListBoxRecord::num_rows
330330 bcs :+
331331 lda #0
332- beq do ; always
332+ SKIP_NEXT_2_BYTE_INSTRUCTION
333+ .assert lbr_copy + LBTK::ListBoxRecord::num_rows <> $C0 , error, "bad BIT skip"
333334: sbc lbr_copy + LBTK::ListBoxRecord::num_rows
334335do: jsr update
335336 lda #MGTK::Part::page_up
You can’t perform that action at this time.
0 commit comments