mirror of
https://github.com/forth-ev/VolksForth.git
synced 2025-01-10 05:29:55 +00:00
Rename vf-lite-* to v4th-*
This commit is contained in:
parent
c860d2478b
commit
f111e1995d
@ -5,12 +5,12 @@
|
||||
|
||||
vf_blk_d64_files = $(wildcard disks/*.d64)
|
||||
vf_blk_fth_files = $(patsubst %.d64, %.fth, $(vf_blk_d64_files))
|
||||
vf_fth_files = $(wildcard src/vf-*.fth)
|
||||
vf_fth_files = $(wildcard src/vf-*.fth src/v4th-*.fth)
|
||||
vf_fth_files_petscii = $(patsubst src/%, cbmfiles/%, $(vf_fth_files))
|
||||
vf_flavours = \
|
||||
full-c64 full-c16+ full-c16- \
|
||||
lite-c64 lite-c16+ lite-c16- lite-x16
|
||||
vf_binaries = $(patsubst %, cbmfiles/vf-%, $(vf_flavours))
|
||||
vf-full-c64 vf-full-c16+ vf-full-c16- \
|
||||
v4th-c64 v4th-c16+ v4th-c16- v4th-x16
|
||||
vf_binaries = $(patsubst %, cbmfiles/%, $(vf_flavours))
|
||||
|
||||
test_files = $(wildcard tests/*.f*)
|
||||
test_files_petscii = $(patsubst tests/%, cbmfiles/%, $(test_files))
|
||||
@ -38,13 +38,13 @@ test: $(test_resuls)
|
||||
|
||||
test64: full64 lite64
|
||||
|
||||
full64: test-full-c64.result
|
||||
full64: test-vf-full-c64.result
|
||||
|
||||
lite64: test-lite-c64.result
|
||||
lite64: test-v4th-c64.result
|
||||
|
||||
debug-64: emulator/tcbase.T64 emulator/build-vf.sh \
|
||||
disks/vforth4_2.d64 disks/tc38q.d64 $(vf_fth_files_petscii)
|
||||
emulator/build-vf.sh vf-c64-main nosave
|
||||
emulator/build-vf.sh v4th-c64 nosave
|
||||
|
||||
run-devenv: emulator/devenv.T64
|
||||
emulator/run-in-vice.sh devenv
|
||||
@ -76,62 +76,62 @@ cbmfiles/vf-full-c16+:
|
||||
cbmfiles/vf-full-c16-:
|
||||
emulator/build-vf.sh vf-full-c16-
|
||||
|
||||
cbmfiles/vf-lite-c64:
|
||||
emulator/build-vf.sh vf-lite-c64
|
||||
cbmfiles/v4th-c64:
|
||||
emulator/build-vf.sh v4th-c64
|
||||
|
||||
cbmfiles/vf-lite-c16+:
|
||||
emulator/build-vf.sh vf-lite-c16+
|
||||
cbmfiles/v4th-c16+:
|
||||
emulator/build-vf.sh v4th-c16+
|
||||
|
||||
cbmfiles/vf-lite-c16-:
|
||||
emulator/build-vf.sh vf-lite-c16-
|
||||
cbmfiles/v4th-c16-:
|
||||
emulator/build-vf.sh v4th-c16-
|
||||
|
||||
cbmfiles/vf-lite-x16:
|
||||
emulator/build-vf.sh vf-lite-x16
|
||||
cbmfiles/v4th-x16:
|
||||
emulator/build-vf.sh v4th-x16
|
||||
|
||||
|
||||
# Core test targets
|
||||
|
||||
$(test_logs): $(test_files_petscii) emulator/run-in-vice.sh
|
||||
|
||||
test-full-c64.log: emulator/vf-full-c64.T64 disks/scratch.d64
|
||||
test-vf-full-c64.log: emulator/vf-full-c64.T64 disks/scratch.d64
|
||||
rm -f cbmfiles/test.log
|
||||
DISK9=scratch emulator/run-in-vice.sh vf-full-c64 \
|
||||
"include run-full-tests.fth\n1234567890\n"
|
||||
petscii2ascii cbmfiles/test.log $@
|
||||
|
||||
test-lite-c64.log: emulator/vf-lite-c64.T64
|
||||
test-v4th-c64.log: emulator/v4th-c64.T64
|
||||
rm -f cbmfiles/test.log
|
||||
emulator/run-in-vice.sh vf-lite-c64 \
|
||||
emulator/run-in-vice.sh v4th-c64 \
|
||||
"include run-lite-tests.fth\n1234567890\n"
|
||||
petscii2ascii cbmfiles/test.log $@
|
||||
|
||||
test-full-c16+.log: emulator/vf-full-c16+.T64 disks/scratch.d64
|
||||
test-vf-full-c16+.log: emulator/vf-full-c16+.T64 disks/scratch.d64
|
||||
rm -f cbmfiles/test.log
|
||||
VICE=xplus4 emulator/run-in-vice.sh vf-full-c16+ \
|
||||
"include run-full-tests.fth\n1234567890\n"
|
||||
petscii2ascii cbmfiles/test.log $@
|
||||
|
||||
test-lite-c16+.log: emulator/vf-lite-c16+.T64
|
||||
test-v4th-c16+.log: emulator/v4th-c16+.T64
|
||||
rm -f cbmfiles/test.log
|
||||
VICE=xplus4 emulator/run-in-vice.sh vf-lite-c16+ \
|
||||
VICE=xplus4 emulator/run-in-vice.sh v4th-c16+ \
|
||||
"include run-lite-tests.fth\n1234567890\n"
|
||||
petscii2ascii cbmfiles/test.log $@
|
||||
|
||||
test-full-c16-.log: emulator/vf-full-c16-.T64
|
||||
test-vf-full-c16-.log: emulator/vf-full-c16-.T64
|
||||
rm -f cbmfiles/test.log
|
||||
VICE=xplus4 emulator/run-in-vice.sh vf-full-c16- \
|
||||
"include run-min-tests.fth\n1234567890\n"
|
||||
petscii2ascii cbmfiles/test.log $@
|
||||
|
||||
test-lite-c16-.log: emulator/vf-lite-c16-.T64
|
||||
test-v4th-c16-.log: emulator/v4th-c16-.T64
|
||||
rm -f cbmfiles/test.log
|
||||
VICE=xplus4 emulator/run-in-vice.sh vf-lite-c16- \
|
||||
VICE=xplus4 emulator/run-in-vice.sh v4th-c16- \
|
||||
"include run-lite-tests.fth\n1234567890\n"
|
||||
petscii2ascii cbmfiles/test.log $@
|
||||
|
||||
test-lite-x16.log: cbmfiles/vf-lite-x16 emulator/sdcard.img
|
||||
test-v4th-x16.log: cbmfiles/v4th-x16 emulator/sdcard.img
|
||||
rm -f cbmfiles/test.log
|
||||
emulator/run-in-x16emu.sh vf-lite-x16 \
|
||||
emulator/run-in-x16emu.sh v4th-x16 \
|
||||
"INCLUDE RUN-LITE-TESTS.FTH\\X0D1234567890\\X0D"
|
||||
mcopy -i emulator/sdcard.img ::TEST.LOG cbmfiles/test.log
|
||||
petscii2ascii cbmfiles/test.log $@
|
||||
@ -150,31 +150,31 @@ emulator/sdcard.img: emulator/sdcard.sfdisk
|
||||
mformat -i $@.tmp -F
|
||||
mv $@.tmp $@
|
||||
|
||||
test-full-c64.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
test-vf-full-c64.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
prelim core coreext double block report-blk)
|
||||
cat $? > $@
|
||||
|
||||
test-lite-c64.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
test-v4th-c64.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
prelim core coreext double report-noblk)
|
||||
cat $? > $@
|
||||
|
||||
test-full-c16+.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
test-vf-full-c16+.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
prelim core coreext double block report-blk)
|
||||
cat $? > $@
|
||||
|
||||
test-lite-c16+.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
test-v4th-c16+.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
prelim core coreext double report-noblk)
|
||||
cat $? > $@
|
||||
|
||||
test-full-c16-.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
test-vf-full-c16-.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
prelim core)
|
||||
cat $? > $@
|
||||
|
||||
test-lite-c16-.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
test-v4th-c16-.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
prelim core coreext double report-noblk)
|
||||
cat $? > $@
|
||||
|
||||
test-lite-x16.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
test-v4th-x16.golden: $(patsubst %, tests/golden/%.golden, \
|
||||
prelim core coreext double report-noblk)
|
||||
cat $? > $@
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
include vf-tc-prep.fth
|
||||
|
||||
\log logopen" vf-lite-c16+.log"
|
||||
\log logopen" v4th-c16+.log"
|
||||
|
||||
include vf-trg-c16+.fth
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
include vf-tc-prep.fth
|
||||
|
||||
\log logopen" vf-lite-c16-.log"
|
||||
\log logopen" v4th-c16-.log"
|
||||
|
||||
include vf-trg-c16-.fth
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
include vf-tc-prep.fth
|
||||
|
||||
\log logopen" vf-lite-c64.log"
|
||||
\log logopen" v4th-c64.log"
|
||||
|
||||
include vf-trg-c64.fth
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
include vf-tc-prep.fth
|
||||
|
||||
\log logopen" vf-lite-x16.log"
|
||||
\log logopen" v4th-x16.log"
|
||||
|
||||
include vf-trg-x16.fth
|
||||
|
Loading…
x
Reference in New Issue
Block a user