Move memory size setup to top level loadfile and set it different for

C16+, C16-, C64 x full and lite, enabling large dictionary for C16+ and
lite versions without need for buffers.
This commit is contained in:
Philip Zembrod 2020-08-04 01:25:07 +02:00
parent d58c9a5646
commit ece0f104e0
13 changed files with 32 additions and 25 deletions

View File

@ -30,6 +30,8 @@ clean:
# Convenience targets
binaries: $(vf_binaries)
test: $(test_resuls)
test64: full64 lite64

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -55,29 +55,4 @@ xyNext Constant xyNext
(2drop Constant Poptwo
(drop Constant Pop
\ *** Block No. 125, Hexblock 7d
7d fthpage
\ System patchup clv06aug87
Forth definitions
(C64 C000 ' limit >body ! 7B00 s0 ! 7F00 r0 ! )
(C16 8000 ' limit >body ! 7700 s0 ! 7b00 r0 ! )
\ (C16+ fd00 ' limit >body !
\ 7B00 s0 ! 7F00 r0 ! )
s0 @ dup s0 2- ! 6 + s0 7 - !
here dp !
Host Tudp @ Target udp !
Host Tvoc-link @ Target voc-link !
Host move-threads
\ Final part of loadscreen
Assembler nonrelocate
.unresolved

View File

@ -11,6 +11,8 @@ include vf-sys-c16.fth
include vf-cbm-file.fth
include vf-cbm-bufs.fth
include vf-finalize.fth
fd00 ' limit >body ! bc00 s0 ! c000 r0 !
include vf-memsetup.fth
include vf-pr-target.fth
quit

View File

@ -11,6 +11,8 @@ include vf-sys-c16.fth
include vf-cbm-file.fth
include vf-cbm-bufs.fth
include vf-finalize.fth
8000 ' limit >body ! 7700 s0 ! 7b00 r0 !
include vf-memsetup.fth
include vf-pr-target.fth
quit

View File

@ -11,6 +11,8 @@ include vf-sys-c64.fth
include vf-cbm-file.fth
include vf-cbm-bufs.fth
include vf-finalize.fth
C000 ' limit >body ! 7B00 s0 ! 7F00 r0 !
include vf-memsetup.fth
include vf-pr-target.fth
quit

View File

@ -10,6 +10,8 @@ include vf-cbm-core.fth
include vf-sys-c16.fth
include vf-cbm-file.fth
include vf-finalize.fth
fd00 ' limit >body ! f900 s0 ! fd00 r0 !
include vf-memsetup.fth
include vf-pr-target.fth
quit

View File

@ -10,6 +10,8 @@ include vf-cbm-core.fth
include vf-sys-c16.fth
include vf-cbm-file.fth
include vf-finalize.fth
8000 ' limit >body ! 7c00 s0 ! 8000 r0 !
include vf-memsetup.fth
include vf-pr-target.fth
quit

View File

@ -10,6 +10,8 @@ include vf-cbm-core.fth
include vf-sys-c64.fth
include vf-cbm-file.fth
include vf-finalize.fth
c000 ' limit >body ! bc00 s0 ! c000 r0 !
include vf-memsetup.fth
include vf-pr-target.fth
quit

View File

@ -0,0 +1,18 @@
\ *** Block No. 125, Hexblock 7d
7d fthpage
\ System patchup clv06aug87
s0 @ dup s0 2- ! 6 + s0 7 - !
here dp !
Host Tudp @ Target udp !
Host Tvoc-link @ Target voc-link !
Host move-threads
\ Final part of loadscreen
Assembler nonrelocate
.unresolved