Rename mk-c64forth.fth to vf-c64-main.fth. Add some comments

This commit is contained in:
Philip Zembrod 2020-07-05 21:24:39 +02:00
parent fff44ffb9c
commit 67e498ccef
3 changed files with 8 additions and 2 deletions

View File

@ -51,7 +51,7 @@ cbmfiles/tcbase: emulator/c64-testbase.T64 emulator/build-tcbase.sh \
emulator/build-tcbase.sh
cbmfiles/c64-vf-latest: emulator/tcbase.T64 emulator/build-c64forth.sh \
disks/vforth4_2.d64 disks/tc38q.d64 cbmfiles/mk-c64forth.fth
disks/vforth4_2.d64 disks/tc38q.d64 cbmfiles/vf-c64-main.fth
emulator/build-c64forth.sh
# Temp stopgap to fit c16 into default use of VERSION=vf-latest

View File

@ -1,4 +1,10 @@
#!/bin/bash
# Script for target-compiling the C64 version of VolksForth.
# It uses the tcbase binary, i.e. the resident part of the target
# compiler, adds the transient part of the target compiler, and then
# loads the C64 VolksForth sources, and saves the target.
set -e
emulatordir="$(dirname "${BASH_SOURCE[0]}")"
@ -6,7 +12,7 @@ basedir="$(realpath --relative-to="$PWD" "${emulatordir}/..")"
rm -f "${basedir}/cbmfiles/c64-vf-latest"
keybuf="include mk-c64forth.fth\n\
keybuf="include vf-c64-main.fth\n\
save-target c64-vf-latest\ndos s0:notdone\n"
DISK9=vforth4_2 DISK10=tc38q "${emulatordir}/run-in-vice.sh" \