mirror of
https://github.com/mgcaret/rom4x.git
synced 2024-12-22 03:29:18 +00:00
14 lines
429 B
ArmAsm
14 lines
429 B
ArmAsm
|
; Patch the Apple IIc+ diagnostics to skip the ROM checksum test.
|
||
|
; We should really examine the routine at $D249 in the aux firmware
|
||
|
; to see if we can calculate a new checksum.
|
||
|
; the $D249 routine copies a small routine into the zero page that
|
||
|
; calculates the checksum. It returns with carry set = error and
|
||
|
; carry clear = OK. So we just patch the JSR to always clear the
|
||
|
; carry. For now.
|
||
|
* = $C53D
|
||
|
.text
|
||
|
nop
|
||
|
nop
|
||
|
clc
|
||
|
|