From be048d3184d451c76cf56dd706be8d087c477d77 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 14 Apr 2026 06:45:36 -0400 Subject: The Great Migration: move all the screen memory to the $4000-$7FFF bank window, move code to $8000, move data/rodata/bss to $2000, move rx_buf and tx_buf, etc etc. --- memsetup.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'memsetup.asm') diff --git a/memsetup.asm b/memsetup.asm index f1e3694..5419aef 100644 --- a/memsetup.asm +++ b/memsetup.asm @@ -1,6 +1,6 @@ ; Initial load segment for the fnchat.exe executable. Sets MEMTOP and -; RAMTOP to $6A00, disables BASIC (on XL/XE), disables ANTIC DMA, then -; returns so the rest of the .xex continues to load. +; RAMTOP to $C000, disables BASIC (on XL/XE), disables ANTIC DMA (not +; really), then returns so the rest of the .xex continues to load. *= $2000 memsetup @@ -14,9 +14,9 @@ memsetup lda $d301 ; PORTB ora #$02 sta $d301 - lda #$80 ; set up everything else + lda #$C0 sta $6a ; RAMTOP sta $02e6 ; MEMTOP high lda #0 -- cgit v1.2.3