Skip to content

Commit

Permalink
Fix FR build - disk_copy/auxlc has grown a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
inexorabletash committed Jan 4, 2025
1 parent 67a38b0 commit 1186fa4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion disk_copy/auxlc.s
Original file line number Diff line number Diff line change
Expand Up @@ -2384,7 +2384,7 @@ Alert := alert_dialog::Alert

;;; ============================================================

.assert * <= $F200, error, "Update memory_bitmap if code extends past $F200"
.assert * <= $F400, error, "Update memory_bitmap if code extends past $F400"
.endscope ; auxlc
auxlc__start := auxlc::start

Expand Down
2 changes: 1 addition & 1 deletion disk_copy/disk_copy.s
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ DEFAULT_FONT := $8600

INITSEG 0
DEFSEG Loader, DISK_COPY_BOOTSTRAP, kDiskCopyBootstrapLength
DEFSEG SegmentAuxLC, $D000, $2200
DEFSEG SegmentAuxLC, $D000, $2300
DEFSEG SegmentMain, $0800, $0C00
;; Update `memory_bitmap` in main.s if these change!

Expand Down
2 changes: 1 addition & 1 deletion disk_copy/main.s
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ memory_bitmap:
.byte %00000000 ; $C0-$CF - I/O
.byte %00000000 ; $D0-$DF - Disk Copy code
.byte %00000000 ; $E0-$EF - Disk Copy code
.byte %01111111 ; $F0-$FF - free $F2 and up
.byte %00111111 ; $F0-$FF - free $F4 and up

;; Aux memory - LCBANK2
.byte %11111111 ; $D0-$DF - free
Expand Down

0 comments on commit 1186fa4

Please sign in to comment.