Rename mk-tcbase.fth to tc-base.fth, and add some comments.

This commit is contained in:
Philip Zembrod 2020-07-05 21:13:04 +02:00
parent dc1d1743e6
commit 50d3ba7499
4 changed files with 9 additions and 4 deletions

View File

@ -47,7 +47,7 @@ run-testbase16: emulator/testbase16.T64
# Targetcompiler targets
cbmfiles/tcbase: emulator/c64-testbase.T64 emulator/build-tcbase.sh \
disks/vforth4_2.d64 disks/tc38q.d64 cbmfiles/mk-tcbase.fth
disks/tc38q.d64 cbmfiles/tc-base.fth
emulator/build-tcbase.sh
cbmfiles/c64-vf-latest: emulator/tcbase.T64 emulator/build-c64forth.sh \

Binary file not shown.

View File

@ -1,4 +1,7 @@
#!/bin/bash
# build script for the resident part of the target compiler running
# on the C64.
set -e
emulatordir="$(dirname "${BASH_SOURCE[0]}")"
@ -6,8 +9,8 @@ basedir="$(realpath --relative-to="$PWD" "${emulatordir}/..")"
rm -f "${basedir}/cbmfiles/tcbase"
keybuf="2 drive 4 load\ninclude mk-tcbase.fth\n\
keybuf="2 drive 4 load\ninclude tc-base.fth\n\
savesystem tcbase\ndos s0:notdone\n"
DISK9=vforth4_2 DISK10=tc38q "${emulatordir}/run-in-vice.sh" \
DISK10=tc38q "${emulatordir}/run-in-vice.sh" \
"c64-testbase" "${keybuf}"

View File

@ -1,5 +1,7 @@
: edit list ;
\ loadfile for the resident part of the target compiler.
' list alias edit
: .blk ( -)
blk @ ?dup IF ." Blk " u. ?cr THEN ;