mirror of
https://github.com/a2stuff/prodos-drivers.git
synced 2024-12-21 14:29:18 +00:00
ROMX: Align with 0.95 c/o Jeff Mazur
This commit is contained in:
parent
536ed14b60
commit
188f1b4ce8
@ -3,6 +3,7 @@
|
|||||||
;;; Ver 0.92 Added ZIP slowdowns
|
;;; Ver 0.92 Added ZIP slowdowns
|
||||||
;;; Ver 0.93 Moved StubLoc to $0110
|
;;; Ver 0.93 Moved StubLoc to $0110
|
||||||
;;; Ver 0.94 Moved StubLoc to RTC_BUF + 7. Save/restore in stack
|
;;; Ver 0.94 Moved StubLoc to RTC_BUF + 7. Save/restore in stack
|
||||||
|
;;; Ver 0.95 Moved MaskTable to after Thunderclock reloc area
|
||||||
;;;
|
;;;
|
||||||
;;; Modifications by Joshua Bell inexorabletash@gmail.com
|
;;; Modifications by Joshua Bell inexorabletash@gmail.com
|
||||||
;;; * Converted to ca65 syntax and adapted to driver wrapper.
|
;;; * Converted to ca65 syntax and adapted to driver wrapper.
|
||||||
@ -276,10 +277,6 @@ bufloop:
|
|||||||
plp
|
plp
|
||||||
rts
|
rts
|
||||||
|
|
||||||
MaskTable:
|
|
||||||
.byte $7f, $3f, $07, $3f, $1f, $ff
|
|
||||||
;; .... min hour wkdy date mnth year (`RTC_BUF` bytes 1..6)
|
|
||||||
|
|
||||||
RamStub:
|
RamStub:
|
||||||
.ifndef FAKE_CLOCK
|
.ifndef FAKE_CLOCK
|
||||||
;; Really read the ROMX RTC
|
;; Really read the ROMX RTC
|
||||||
@ -315,6 +312,10 @@ RamStub:
|
|||||||
RamStubEnd := *
|
RamStubEnd := *
|
||||||
.assert RamStubEnd - RamStub < $20, error, "Stub too long"
|
.assert RamStubEnd - RamStub < $20, error, "Stub too long"
|
||||||
|
|
||||||
|
MaskTable:
|
||||||
|
.byte $7f, $3f, $07, $3f, $1f, $ff
|
||||||
|
;; .... min hour wkdy date mnth year (`RTC_BUF` bytes 1..6)
|
||||||
|
|
||||||
ClockDrvEnd := *
|
ClockDrvEnd := *
|
||||||
ClockDrvSize = ClockDrvEnd - ClockDrv
|
ClockDrvSize = ClockDrvEnd - ClockDrv
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user