Skip to content

Commit 6868deb

Browse files
Update from development backup 201506022105
1 parent dbd47ca commit 6868deb

11 files changed

+156
-77
lines changed

Makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ abersoftforth2z80dasmblocks: abersoftforth2z80dasmblocks_compiling.tap
206206
abersoftforth2z80dasmblocks_compiling.tap: \
207207
abersoftforth2z80dasmblocks.tap \
208208
afera_for_disassembling.tap \
209-
patch_question_stack.tap
209+
patches.tap
210210
cat \
211211
abersoft_forth.original.tap \
212212
lib/loader.tap \
@@ -217,7 +217,6 @@ abersoftforth2z80dasmblocks_compiling.tap: \
217217
lib/recurse.tap \
218218
lib/decode.tap \
219219
lib/lowersys.tap \
220-
patch_question_stack.tap \
221220
lib/bank.tap \
222221
lib/16kramdisks.tap \
223222
lib/upperc.tap \
@@ -232,6 +231,7 @@ abersoftforth2z80dasmblocks_compiling.tap: \
232231
lib/csb.tap \
233232
lib/csb-256.tap \
234233
lib/s-plus.tap \
234+
patches.tap \
235235
abersoftforth2z80dasmblocks.tap \
236236
> abersoftforth2z80dasmblocks_compiling.tap ; \
237237
rm -f abersoftforth2z80dasmblocks.tap
@@ -240,7 +240,7 @@ abersoftforth2nfa4vim: abersoftforth2nfa4vim_compiling.tap
240240

241241
abersoftforth2nfa4vim_compiling.tap: \
242242
abersoftforth2nfa4vim.tap \
243-
patch_question_stack.tap
243+
patches.tap
244244
cat \
245245
abersoft_forth.original.tap \
246246
lib/loader.tap \
@@ -251,7 +251,6 @@ abersoftforth2nfa4vim_compiling.tap: \
251251
lib/recurse.tap \
252252
lib/decode.tap \
253253
lib/lowersys.tap \
254-
patch_question_stack.tap \
255254
lib/bank.tap \
256255
lib/48kq.tap \
257256
lib/16kramdisks.tap \
@@ -268,6 +267,7 @@ abersoftforth2nfa4vim_compiling.tap: \
268267
lib/csb.tap \
269268
lib/csb-256.tap \
270269
lib/s-plus.tap \
270+
patches.tap \
271271
abersoftforth2nfa4vim.tap \
272272
> abersoftforth2nfa4vim_compiling.tap ; \
273273
rm -f abersoftforth2nfa4vim.tap
@@ -277,7 +277,7 @@ abersoftforth2branches: abersoftforth2branches_compiling.tap
277277
abersoftforth2branches_compiling.tap: \
278278
abersoftforth2branches.tap \
279279
afera_for_disassembling.tap \
280-
patch_question_stack.tap
280+
patches.tap
281281
cat \
282282
abersoft_forth.original.tap \
283283
lib/loader.tap \
@@ -288,7 +288,6 @@ abersoftforth2branches_compiling.tap: \
288288
lib/recurse.tap \
289289
lib/decode.tap \
290290
lib/lowersys.tap \
291-
patch_question_stack.tap \
292291
lib/bank.tap \
293292
lib/48kq.tap \
294293
lib/16kramdisks.tap \
@@ -304,6 +303,7 @@ abersoftforth2branches_compiling.tap: \
304303
lib/csb.tap \
305304
lib/csb-256.tap \
306305
lib/s-plus.tap \
306+
patches.tap \
307307
abersoftforth2branches.tap \
308308
> abersoftforth2branches_compiling.tap ; \
309309
rm -f abersoftforth2branches.tap

TO-DO.adoc

+3-14
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,12 @@
11
= Abersoft Forth disassembled TO-DO
22
:author: Marcos Cruz (programandala.net)
3-
:revdate: 2015-05-31
4-
3+
:revdate: 2015-06-02
54

65
.2015-05-31:
76

8-
Strange problem with <abersoftforth2branches.fsb>: one instance is not
9-
found. Others are not translated later.
10-
11-
Document `cold_start`, `COLD`, `warm_start` and `WARM`.
12-
13-
Make the automatic blocks unlabeled?
7+
Document the `COLD` bug.
148

159
.2015-06-02:
1610

17-
Unpatch `r/w`, at least its branch, before creating the branches.
18-
19-
Document l706dh.
20-
21-
Document `mon`.
11+
Tidy the number of `rst` calls.
2212

23-
Document 0xCBE0.

abersoftforth2branches.boot.symbols-output.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
# abersoftforth2branches.boot.symbols-output.sh
33
# 2015-05-30
44

5-
rm -f ./z80dasm_symbols.branches.vim
5+
rm -f ./z80dasm_symbols.branches.z80s
66
fuse \
77
--machine 128 \
88
--no-divide \
99
--tape ./abersoftforth2branches_compiling.tap \
1010
--printer \
11-
--textfile ./z80dasm_symbols.branches.vim \
11+
--textfile ./z80dasm_symbols.branches.z80s \
1212
$* \
1313
&
1414

abersoftforth2branches.fsb

+11-8
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
\ abersoftforth2branches.fsb
44

5-
\ XXX TODO -- under development
6-
75
\ Self-disassembly tool for ZX Spectrum Abersoft Forth
86

7+
\ This file is part of
8+
\ Abersoft Forth disassembled
9+
\ <http://programandala.net.en.program.abersoft_forth.html>.
10+
911
\ Copyright (C) 2015 Marcos Cruz (programandala.net)
1012

1113
\ Copying and distribution of this file, with or without
@@ -79,13 +81,13 @@ vocabulary print-voc immediate print-voc definitions hex
7981
." make sure the printout file of" cr
8082
." your emulator is empty." cr cr
8183
\ <------------------------------>
82-
." Type 'vim' to print out a Vim" cr
83-
." program that tidies the Forth" cr
84-
." branches of the Z80 source." cr cr
85-
\ <------------------------------>
8684
." Type 'sym' to print out a" cr
8785
." z80dasm symbols file with the" cr
88-
." branch destination addresses." cr quit ;
86+
." branch destination addresses." cr cr
87+
\ <------------------------------>
88+
." Type 'vim' to print out a Vim" cr
89+
." program that tidies the Forth" cr
90+
." branches of the Z80 source." cr quit ;
8991
\ <------------------------------>
9092

9193
( Labels )
@@ -216,9 +218,10 @@ vocabulary print-voc immediate print-voc definitions hex
216218
begin pfa dup print-pfa lfa @ dup 0= ?terminal or
217219
until drop ;
218220

221+
: print-context ( -- )
219222
\ Print branches of the context vocabulary,
220223
\ and the vocabularies it's chained to.
221-
: print-context ( -- ) context @ @ print-from-nfa ;
224+
context @ @ print-from-nfa ;
222225

223226
( done )
224227

abersoftforth2nfa4vim.fsb

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
\ Self-disassembly tool for ZX Spectrum Abersoft Forth
66

7+
\ This file is part of
8+
\ Abersoft Forth disassembled
9+
\ <http://programandala.net.en.program.abersoft_forth.html>.
10+
711
\ Copyright (C) 2015 Marcos Cruz (programandala.net)
812

913
\ Copying and distribution of this file, with or without
@@ -20,7 +24,7 @@
2024
\ definitive format.
2125
\
2226
\ The printout, processed by Vim, is used to recreate the
23-
\ original Z80 source of Abersoft Forth. Ssee <README.adoc>
27+
\ original Z80 source of Abersoft Forth. See <README.adoc>
2428
\ and <Makefile> for more details.
2529

2630
\ -----------------------------------------------------------
@@ -179,7 +183,7 @@ char " constant quote
179183
: new-name-field ( pfa -- )
180184
\ Print the new name field.
181185
nfa ." defb " dup c@ count-byte
182-
dup c@ len-only ." , " name ;
186+
dup c@ len-only ." ," name ;
183187

184188
: (vim-command) ( pfa -- )
185189

abersoftforth2z80dasmblocks.fsb

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
\ Self-disassembly tool for ZX Spectrum Abersoft Forth
66

77
\ This file is part of
8-
9-
\ Abersoft Forth disassembled
10-
\ <http://programandala.net/en.program.abersoft_forth.html>
8+
\ Abersoft Forth disassembled
9+
\ <http://programandala.net/en.program.abersoft_forth.html>.
1110

1211
\ Copyright (C) 2015 Marcos Cruz (programandala.net)
1312

@@ -441,7 +440,7 @@ false variable semicolon-code?
441440
\ Print out the zones of all definitions of the original
442441
\ system.
443442
hex 1 link file-header [compile] editor print-context
444-
[compile] print-voc 0 link decimal cr ." Done." cr ;
443+
[compile] print-voc 0 link decimal cr done ;
445444

446445
\ vim: filetype=abersoftforthafera
447446

patch_question_stack.fsb

-34
This file was deleted.

patches.fsb

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
.( Patches )
2+
3+
\ patches.fsb
4+
5+
\ This file is part of
6+
\ Abersoft Forth disassembled
7+
\ <http://programandala.net.en.program.abersoft_forth.html>.
8+
9+
\ Copyright (C) 2015 Marcos Cruz (programandala.net)
10+
11+
\ Copying and distribution of this file, with or without
12+
\ modification, are permitted in any medium without royalty
13+
\ provided the copyright notice and this notice are
14+
\ preserved. This file is offered as-is, without any
15+
\ warranty.
16+
17+
\ -----------------------------------------------------------
18+
\ Description
19+
20+
\ This file modifies some patches created by modules of the
21+
\ Afera library, in order to make the patched words the same
22+
\ size than their original versions. Otherwise the Abersoft
23+
\ Forth tools that create data and programs to process the
24+
\ disassembling, would make wrong calculations.
25+
26+
\ -----------------------------------------------------------
27+
\ History
28+
29+
\ 2015-06-01: `?STACK`.
30+
\ 2015-06-02: `R/W`.
31+
32+
-->
33+
34+
( Repatch ?STACK )
35+
36+
\ `?STACK` was patched by the Afera module <lowersys.fsb>.
37+
38+
\ It has to be padded with `NOOP`, and `;S` has to be in its
39+
\ original address.
40+
41+
HERE ] NOOP NOOP ;S [
42+
43+
DUP \ Origin: start of the compiled patch.
44+
' ?STACK 28 + \ Destination.
45+
OVER HERE SWAP - CMOVE \ Do it.
46+
DP ! \ Free the space of the compiled patch.
47+
48+
-->
49+
50+
( Repatch R/W )
51+
52+
\ `R/W` was patched by the Afera main module <afera.fsb>.
53+
54+
\ It has to be padded with `NOOP`, `;S` has to be in its
55+
\ original address, and its original branch must be restored.
56+
57+
HERE ] NOOP NOOP NOOP NOOP NOOP NOOP NOOP
58+
1 0BRANCH [ 4 , ] NOOP NOOP NOOP ;S [
59+
60+
DUP \ Origin: start of the compiled patch.
61+
' R/W 8 + \ Destination.
62+
OVER HERE SWAP - CMOVE \ Do it.
63+
DP ! \ Free the space of the compiled patch.
64+
65+
\ vim: filetype=abersoftforthafera
66+

0 commit comments

Comments
 (0)