Jumbo: improve reliability with new chain order

This commit is contained in:
frankmilliron 2023-07-17 19:52:51 -07:00 committed by GitHub
parent a519d0c619
commit 1784908bcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@ The drivers are (in order):
* No-Slot Clock
* ROMX
* FujiNet
* DClock
* Cricket!
* DClock
The installer is silent - no output is shown on either failure or success.

View File

@ -28,15 +28,15 @@
.scope romx
.include "../romx/romxrtc.system.s"
.endscope
.scope dclock
.include "../dclock/dclock.system.s"
.endscope
.scope fujinet
.include "../fujinet/fn.clock.system.s"
.endscope
.scope cricket
.include "../cricket/cricket.system.s"
.endscope
.scope dclock
.include "../dclock/dclock.system.s"
.endscope
;;; ============================================================
;;;
@ -58,15 +58,15 @@
jsr romx::maybe_install_driver
bcc ret
jsr dclock::maybe_install_driver
bcc ret
jsr fujinet::maybe_install_driver
bcc ret
jsr cricket::maybe_install_driver
bcc ret
jsr dclock::maybe_install_driver
bcc ret
ret: rts
.endproc