1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
README for pForth - a Portable ANS-like Forth written in ANSI 'C'
by Phil Burk
with Larry Polansky, David Rosenboom and Darren Gibbs.
Last updated: 4/6/98 V19
Please direct feedback, bug reports, and suggestions to:
philburk@softsynth.com.
The author is available for customization of pForth, porting to new
platforms, or developing pForth applications on a contractual basis.
If interested, contact Phil Burk at philburk@softsynth.com.
-- LEGAL NOTICE -----------------------------------------
The pForth software code is dedicated to the public domain,
and any third party may reproduce, distribute and modify
the pForth software code or any derivative works thereof
without any compensation or license. The pForth software
code is provided on an "as is" basis without any warranty
of any kind, including, without limitation, the implied
warranties of merchantability and fitness for a particular
purpose and their equivalents under the laws of any jurisdiction.
-- How to run PForth ------------------------------------
Note: Please refer to "pf_ref.htm" for more complete information.
Once you have compiled and built the dictionary, just enter:
pforth
To compile source code files use: INCLUDE filename
To create a custom dictionary enter in pForth:
c" newfilename.dic" SAVE-FORTH
The name must end in ".dic".
To run PForth with the new dictionary enter in the shell:
pforth -dnewfilename.dic
To run PForth and automatically include a forth file:
pforth myprogram.fth
-- How to run PForth ------------------------------------
You can test the Forth without loading a dictionary
which might be necessary if the dictionary can't be built.
Enter: pforth -i
In pForth, enter: 3 4 + .
In pForth, enter: loadsys
In pForth, enter: 10 0 do i . loop
PForth comes with a small test suite. To test the Core words,
you can use the coretest developed by John Hayes.
Enter: pforth
Enter: include tester.fth
Enter: include coretest.fth
To run the other tests, enter:
pforth t_corex.fth
pforth t_strings.fth
pforth t_locals.fth
pforth t_alloc.fth
They will report the number of tests that pass or fail.
-- Version History --------------------------------------
V1 - 5/94
- built pForth from various Forths including HMSL
V2 - 8/94
- made improvements necessary for use with M2 Verilog testing
V3 - 3/1/95
- Added support for embedded systems: PF_NO_FILEIO
and PF_NO_MALLOC.
- Fixed bug in dictionary loader that treated HERE as name relative.
V4 - 3/6/95
- Added smart conditionals to allow IF THEN DO LOOP etc.
outside colon definitions.
- Fixed RSHIFT, made logical.
- Added ARSHIFT for arithmetic shift.
- Added proper M*
- Added <> U> U<
- Added FM/MOD SM/REM /MOD MOD */ */MOD
- Added +LOOP EVALUATE UNLOOP EXIT
- Everything passes "coretest.fth" except UM/MOD FIND and WORD
V5 - 3/9/95
- Added pfReportError()
- Fixed problem with NumPrimitives growing and breaking dictionaries
- Reduced size of saved dictionaries, 198K -> 28K in one instance
- Funnel all terminal I/O through ioKey() and ioEmit()
- Removed dependencies on printf() except for debugging
V6 - 3/16/95
- Added floating point
- Changed NUMBER? to return a numeric type
- Support double number entry, eg. 234. -> 234 0
V7 - 4/12/95
- Converted to 3DO Teamware environment
- Added conditional compiler [IF] [ELSE] [THEN], use like #if
- Fixed W->S B->S for positive values
- Fixed ALLOCATE FREE validation. Was failing on some 'C' compilers.
- Added FILE-SIZE
- Fixed ERASE, now fills with zero instead of BL
V8 - 5/1/95
- Report line number and line dump when INCLUDE aborts
- Abort if stack depth changes in colon definition. Helps
detect unbalanced conditionals (IF without THEN).
- Print bytes added by include. Helps determine current file.
- Added RETURN-CODE which is returned to caller, eg. UNIX shell.
- Changed Header and Code sizes to 60000 and 150000
- Added check for overflowing dictionary when creating secondaries.
V9 - 10/13/95
- Cleaned up and documented for alpha release.
- Added EXISTS?
- compile floats.fth if F* exists
- got PF_NO_SHELL working
- added TURNKEY to build headerless dictionary apps
- improved release script and rlsMakefile
- added FS@ and FS! for FLPT structure members
V10 - 3/21/96
- Close nested source files when INCLUDE aborts.
- Add PF_NO_CLIB option to reduce OS dependencies.
- Add CREATE-FILE, fix R/W access mode for OPEN-FILE.
- Use PF_FLOAT instead of FLOAT to avoid DOS problem.
- Add PF_HOST_DOS for compilation control.
- Shorten all long file names to fit in the 8.3 format
required by some primitive operating systems. My
apologies to those with modern computers who suffer
as a result. ;-)
V11 - 11/14/96
- Added support for AUTO.INIT and AUTO.TERM. These are called
automagically when the Forth starts and quits.
- Change all int to int32.
- Changed DO LOOP to ?DO LOOP in ENDCASE and LV.MATCH
to fix hang when zero local variables.
- Align long word members in :STRUCT to avoid bus errors.
V12 - 12/1/96
- Advance pointers in pfCopyMemory() and pfSetMemory()
to fix PF_NO_CLIB build.
- Increase size of array for PF_NO_MALLOC
- Eliminate many warnings involving type casts and (const char *)
- Fix error recovery in dictionary creation.
- Conditionally eliminate some include files for embedded builds.
- Cleanup some test files.
V13 - 12/15/96
- Add "extern 'C' {" to pf_mem.h for C++
- Separate PF_STATIC_DIC from PF_NO_FILEIO so that we can use a static
dictionary but also have file I/O.
- Added PF_USER_FILEIO, PF_USER_CHARIO, PF_USER_CLIB.
- INCLUDE now aborts if file not found.
- Add +-> which allows you to add to a local variable, like +! .
- VALUE now works properly as a self fetching constant.
- Add CODE-SIZE and HEADERS-SIZE which lets you resize
dictionary saved using SAVE-FORTH.
- Added FILE?. Enter "FILE? THEN" to see what files THEN is defined in.
- Fixed bug in local variables that caused problems if compilation
aborted in a word with local variables.
- Added SEE which "disassembles" Forth words. See "see.fth".
- Added PRIVATE{ which can be used to hide low level support
words. See "private.fth".
V14 - 12/23/96
* pforth command now requires -d before dictionary name.
Eg. pforth -dcustom.dic test.fth
* PF_USER_* now need to be defined as include file names.
* PF_USER_CHARIO now requires different functions to be defined.
See "csrc/pf_io.h".
- Moved pfDoForth() from pf_main.c to pf_core.c to simplify
file with main().
- Fix build with PF_NO_INIT
- Makefile now has target for embedded dictionary, "gmake pfemb".
V15 - 2/15/97
* If you use PF_USER_FILEIO, you must now define PF_STDIN and PF_STDOUT
among other additions. See "pf_io.h".
* COMPARE now matches ANS STRING word set!
- Added PF_USER_INC1 and PF_USER_INC2 for optional includes
and host customization. See "pf_all.h".
- Fixed more warnings.
- Fixed >NAME and WORDS for systems with high "negative" addresses.
- Added WORDS.LIKE utility. Enter: WORDS.LIKE EMIT
- Added stack check after every word in high level interpreter.
Enter QUIT to enter high level interpreter which uses this feature.
- THROW will no longer crash if not using high level interpreter.
- Isolated all host dependencies into "pf_unix.h", "pf_win32.h",
"pf_mac.h", etc. See "pf_all.h".
- Added tests for CORE EXT, STRINGS words sets.
- Added SEARCH
- Fixed WHILE and REPEAT for multiple WHILEs.
- Fixed .( ) for empty strings.
- Fixed FATAN2 which could not compile on some systems (Linux gcc).
V16
* Define PF_USER_CUSTOM if you are defining your own custom
'C' glue routines. This will ifndef the published example.
- Fixed warning in pf_cglue.c.
- Fixed SDAD in savedicd.fth. It used to generate bogus 'C' code
if called when (BASE != 10), as in HEX mode.
- Fixed address comparisons in forget.fth and private.fth for
addresses above 0x80000000. Must be unsigned.
- Call FREEZE at end of system.fth to initialize rfence.
- Fixed 0.0 F. which used to leave 0.0 on FP stack.
- Added FPICK ( n -- ) ( i*f -- i*f f[n] )
- .S now prints hex numbers as unsigned.
- Fixed internal number to text conversion for unsigned nums.
V17
- Fixed input of large floats. 0.7071234567 F. used to fail.
V18
- Make FILL a 'C' primitive.
- optimized locals with (1_LOCAL@)
- optimized inner interpreter by 15%
- fix tester.fth failures
- Added define for PF_KEY_ECHOS which turns off echo in ACCEPT if defined.
- Fixed MARKER. Was equivalent to ANEW instead of proper ANS definition.
- Fixed saving and restoring of TIB when nesting include files.
V19 4/98
- Warn if local var name matches dictionary, : foo { count -- } ;
- TO -> and +-> now parse input stream. No longer use to-flag.
- TO -> and +-> now give error if used with non-immediate word.
- Added (FLITERAL) support to SEE.
- Aded TRACE facility for single step debugging of Forth words.
- Added stub for ?TERMINAL and KEY? for embedded systems.
- Added PF_NO_GLOBAL_INIT for no reliance on global initialization.
- Added PF_USER_FLOAT for customization of FP support.
- Added floating point to string conversion words (F.) (FS.) (FE.)
For example: : F. (F.) TYPE SPACE ;
- Reversed order that values are placed on return stack in 2>R
so that it matches ANS standard. 2>R is now same as SWAP >R >R
Thank you Leo Wong for reporting this bug.
- Added PF_USER_INIT and PF_USER_TERM for user definable init and term calls.
- FIXED memory leak in pfDoForth()
V20
- Expand PAD for ConvertNumberToText so "-1 binary .s" doesn't crash.
Thank you Michael Connor of Vancouver for reporting this bug.
- Removed FDROP in REPRESENT to fix stack underflow after "0.0 F.".
Thank you Jim Rosenow of Minnesota for reporting this bug.
- Changed pfCharToLower to function to prevent macro expansion bugs under VXWORKS
Thank you Jim Rosenow of Minnesota for reporting this bug.
- "0.0 F~" now checks actual binary encoding of floats. Before this it used to just
compare value which was incorrect. Now "0.0 -0.0 0.0 F~" returns FALSE.
- Fixed definition of INPUT$ in tutorial.
Thank you Hampton Miller of California for reporting this bug.
- Added support for producing a target dictionary with a different
Endian-ness than the host CPU. See PF_BIG_ENDIAN_DIC and PF_LITTLE_ENDIAN_DIC.
- PForth kernel now comes up in a mode that uses BASE for numeric input when
started with "-i" option. It used to always consider numeric input as HEX.
Initial BASE is decimal.
V21
- Fixed some compiler warnings.
Enjoy,
Phil Burk
|