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