Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed DFS dependency in disksys #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ compile.txt
makekc.bat
runkc.bat
b-emlog.txt
beeb-step.txt
11 changes: 4 additions & 7 deletions beebstep.asm
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ GUARD &3000

.start

; Master 128 PAGE is &0E00 since MOS uses other RAM buffers for DFS workspace
SCRATCH_RAM_ADDR = &0400

INCLUDE "lib/exomiser.asm"
INCLUDE "lib/vgmplayer.asm"
INCLUDE "lib/disksys.asm"
Expand All @@ -82,10 +79,10 @@ INCLUDE "lib/bresenham.asm"

; disk loader uses hacky filename format (same as catalogue)
; we use disk loader for SWR banks only
.bank_file0 EQUS "Bank0 $"
.bank_file1 EQUS "Bank1 $"
.bank_file2 EQUS "Bank2 $"
.bank_file3 EQUS "Bank3 $"
.bank_file0 EQUS "Bank0",13
.bank_file1 EQUS "Bank1",13
.bank_file2 EQUS "Bank2",13
.bank_file3 EQUS "Bank3",13

.screen_file EQUS "LOAD Page", 13

Expand Down
Binary file modified beebstep.ssd
Binary file not shown.
Loading