home: hub: 9ficl

Download patch

ref: 239cc96794fe278fe95d58812b9a4122e276de75
parent: f452824602002d832ea1c31b2c8fc8806d063f3f
author: jsadler <jsadler@ficl.sf.net>
date: Wed Oct 31 22:18:17 CST 2001

Ficl 3.01

--- a/doc/ficl.html
+++ b/doc/ficl.html
@@ -1,265 +1,185 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html>
-<head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-   <meta name="Author" content="john sadler">
-   <meta name="Description" content="the coolest embedded scripting language ever">
-   <title>Ficl - Embedded Scripting</title>
-</head>
-<body>
-<link REL="SHORTCUT ICON" href="ficl.ico">
-<h1><b>Ficl Documentation</b></h1>
-
-<script language="javascript" src="ficlheader.js"></script>
-
-<h2>Contents</h2>
-
-<ul>
-<li>
-<font size=+1><a href="ficl_rel.html">Release notes</a></font></li>
-
-<li>
-<font size=+1><a href="#whatis">What is ficl?</a></font></li>
-
-<li>
-<font size=+1><a href="http://sourceforge.net/projects/ficl">Ficl project page on Sourceforge</a></font></li>
-
-<li>
-<font size=+1><a href="http://sourceforge.net/project/showfiles.php?group_id=24441">Download</a></font></li>
-
-<li>
-<font size=+1><a href="#links">Tutorials and References</a></font></li>
-
-<li>
-<font size=+1><a href="#includesficl">Ficl Inside!</a></font></li>
-
-<li>
-<font size=+1><a href="#lawyerbait">Disclaimer &amp; License</a></font></li>
-
-<li>
-<font size=+1><a href="#features">Ficl features</a></font></li>
-
-<li>
-<font size=+1><a href="#porting">Porting</a></font></li>
-
-<li>
-<font size=+1><a href="#api">Application Programming Interface</a></font></li>
-
-<li>
-<font size=+1><a href="#manifest">Distribution source files</a></font></li>
-
-<li>
-<font size=+1><a href="ficl_loc.html">Local variables</a></font></li>
-
-<li>
-<font size=+1><a href="ficl_oop.html">Object Oriented Programming in ficl</a></font></li>
-
-<li>
-<font size=+1><a href="ficl_debug.html">Ficl Debugger</a></font></li>
-
-<li>
-<font size=+1><a href="#extras">Ficl extras</a></font></li>
-
-<ul>
-<li>
-<font size=+1><a href="#exnumber">Number syntax</a></font></li>
-<li>
-<font size=+1><a href="ficl_parse.html">Parser extensions and prefix support</a></font></li>
-<li>
-<font size=+1><a href="#exsearch">Search order words</a></font></li>
-
-<li>
-<font size=+1><a href="#exuser">User variables</a></font></li>
-
-<li>
-<font size=+1><a href="#exmisc">Miscellaneous useful words</a></font></li>
-
-<li>
-<font size=+1><a href="#exficlwin">FiclWin words</a></font></li>
-</ul>
-
-<li>
-<font size=+1><a href="#ansinfo">ANS required information</a></font></li>
-</ul>
-
-<br>&nbsp;
-<table BORDER=0 CELLSPACING=3 COLS=1 WIDTH="675" >
-<tr>
-<td>
-<h1><a NAME="whatis"></a>What is ficl?</h1>
-
-Ficl is a complete programming language interpreter designed
-to be embedded into other systems as a command, macro, and development prototype
-language. Unlike other scripting interpreters, Ficl:
-<bl>
-<li>typically takes under 2 hours to port to a new system -- much less if the target 
-operating system is one of several already supported (Win32, Linux, FreeBSD, RiscOS, and more)</li>
-<li>has a small memory footprint: a fully featured Win32 console version takes less
-than 100K of memory, and a minimal version is less than half that
-</li>
-<li>is relatively quick thanks to its threaded code virtual machine design 
-and just in time compiling</li>
-<li>is a complete and powerful programming language</li>
-<li>is interactive</li>
-<li>has object oriented programming features that can be used to wrap data
-structures or classes of the host system without altering them - even if the host is 
-mainly written in a non-OO language</li>
-</bl>
-<p>
-Ficl syntax is based on ANS Forth and the code is Standard C. See below for examples of
-<a href="#includesficl">software and products that include ficl</a>. 
-Ficl stands for "Forth inspired command language".&nbsp;</p>
-</td>
-</tr>
-
-<tr>
-<td>
-<h3>Ficl vs. other Forth interpreters</h3>
-Where Forths usually view themselves as the center of the system and
-expect the rest of the system to be coded in Forth, Ficl acts as a component
-of the system. It is easy to export code written in C or ASM to Ficl in
-the style of TCL, or to invoke Ficl code from a compiled module. This allows
-you to do incremental development in a way that combines the best features
-of threaded languages (rapid development, quick code/test/debug cycle,
-reasonably fast) with the best features of C (everyone knows it, easier
-to support large blocks of code, efficient, type checking). In addition,
-Ficl provides a simple and powerful object model that can act as an object
-oriented <i>adapter</i> for code written in C (or asm, Forth, C++...).&nbsp;</td>
-</tr>
-
-<tr>
-<td>
-<h3>Ficl Design goals</h3>
-<ul>
-<li>
-Target 32 bit processors (<i>version 2.03 targets 64 bit processors too</i>)</li>
-
-<li>
-Scripting, prototyping, and extension language for systems written also
-in C</li>
-
-<li>
-Supportable - code is as transparent as I can make it</li>
-
-<li>
-Interface to functions written in C</li>
-
-<li>
-Conform to the Forth DPANS 94</li>
-
-<li>
-Minimize porting effort - require an ANSI C runtime environment and minimal
-glue code</li>
-
-<li>
-Provide object oriented extensions</li>
-</ul>
-</td>
-</tr>
-</table>
-
-<p>
-<hr>
-<h2>
-<a NAME="download"></a>Download</h2>
-
-<ul>
-<li>
-<b><a href="http://sourceforge.net/project/showfiles.php?group_id=24441">Download
-ficl (latest release)</a></b>
-</li>
-</ul>
-
-<h2>
-<a NAME="links"></a>More information on Ficl and Forth
-</h2>
-
-<ul>
-<li>
-<a href="http://ficl.sourceforge.net">Web home of Ficl</a></li>
-
-<li>
-<a href="ficlddj.pdf">Manuscript of Ficl article for January 1999 Dr. Dobb's
-Journal</a></li>
-
-<li>
-<a href="jwsforml.pdf">1998 FORML Conference paper - OO Programming in
-Ficl</a></li>
-
-<li>
-<a href="http://www.taygeta.com/forth_intro/stackflo.html">An Introduction
-to Forth using Stack Flow</a> (start here if you're new to Forth)</li>
-
-<li>
-<a href="http://www.softsynth.com/pforth/pf_tut.htm">Phil Burk's Forth
-Tutorial</a></li>
-
-<li>
-<a href="http://www.complang.tuwien.ac.at/forth/threaded-code.html">Anton Ertl's description of Threaded Code</a>
-</li>
-
-<li>
-<a href="http://ficl.sourceforge.net/dpans/dpans.html">Draft Proposed American
-National Standard for Forth</a> (quite readable, actually)
-</li>
-
-<li>
-<a href="http://www.taygeta.com/forthlit.html">Forth literature index on
-Taygeta</a></li>
-
-<li>
-<a href="http://www.forth.org">Forth Interest Group</a>
-</li>
-</ul>
-
-<h2>
-<a NAME="includesficl"></a>Some software that uses ficl</h2>
-
-<ul>
-<li>
-<a href="http://www.freebsd.org/">FreeBSD</a> boot loader (Daniel Sobral, Jordan Hubbard)</li>
-
-<li>
-<a href="http://www.chipcenter.com/networking/images/prod/prod158a.pdf">SwitchCore</a>
-Gigabit Ethernet switches (�rjan Gustavsson )</li>
-
-<li>
-<a href="http://debuffer.sourceforge.net/">Palm Pilot Debuffer</a>
-(Eric Sessoms) Also see ficlx, a C++ interface to ficl, on the same site</li>
-
-<li>
-<a href="http://www.swcp.com/~jchavez/osmond.html">Osmond PC Board Layout
-tool</a></li>
-
-<li>
-<a href="http://www.netcomsystems.com">NetCom Systems</a> ML7710</li>
-<li>
-<a href="http://www.parview.com/ds/homepage.html">ParView</a> GPS system
-</li>
-<li>
-<a href="http://www.thekompany.com/products/powerplant/software/Languages/Embedded.php3">PowerPlant Software</a> Development Environment for Linux
-</li>
-<li>
-<a href="http://www.vyyo.com/products/architecture_v3000.html">Vyyo V3000 Broadband Wireless Hub</a>
-</li>
-<li>
-<a href="mailto:john_sadler@alum.mit.edu"><i>Your Product Name Here!!!</i></a>
-</li>
-</ul>
-
-<hr>
-<table BORDER=0 CELLSPACING=3 COLS=1 WIDTH="675" >
-<tr>
-<td>
-<h2><a NAME="lawyerbait"></a>LICENSE and DISCLAIMER</h2>
-<p>
-Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu)
-All rights reserved.</p>
-<p>I am interested in hearing from anyone who uses ficl. If you have a
-problem, a success story, a defect, an enhancement request, or if you would
-like to contribute to the ficl release, please <a href="mailto:john_sadler@alum.mit.edu">send
-me email</a>.&nbsp;
-<pre>
+<!DOCTYPE html PUBLIC "-//w3c//dtd html 4.0 transitional//en">
+<HTML>
+  <HEAD>
+    <META name="Author" content="john sadler">
+    <META name="Description" content="Ficl - embedded scripting with object oriented programming">
+    <META name="Keywords" content="scripting prototyping tcl OOP Forth interpreter C">
+<STYLE>
+   
+</STYLE>
+    <LINK rel="SHORTCUT ICON" href="ficl.ico">
+    <TITLE>
+      Ficl - Embedded Scripting
+    </TITLE>
+  </HEAD>
+  <BODY>
+    <H1>
+      <B>Ficl Documentation</B>
+    </H1>
+<SCRIPT language="javascript" src="ficlheader.js" type="text/javascript">
+</SCRIPT>
+    <DIV style="width:675px">
+      <BR>
+       
+      <H1>
+        <A name="whatis"></A>What is ficl?
+      </H1>
+      Ficl is a complete programming language interpreter designed to be embedded into other systems (including firmware based ones) as a command, macro, and development prototype language. Unlike other scripting interpreters,
+      Ficl: 
+      <UL>
+        <LI>
+          typically takes under 2 hours to port to a new system -- much less if the target operating system is one of several already supported (Win32, Linux, FreeBSD, RiscOS, and more)
+        </LI>
+        <LI>
+          has a small memory footprint: a fully featured Win32 console version takes less than 100K of memory, and a minimal version is less than half that
+        </LI>
+        <LI>
+          is relatively quick thanks to its threaded code virtual machine design and just in time compiling
+        </LI>
+        <LI>
+          is a complete and powerful programming language
+        </LI>
+        <LI>
+          is interactive
+        </LI>
+        <LI>
+          has object oriented programming features that can be used to wrap data structures or classes of the host system without altering them - even if the host is mainly written in a non-OO
+          language
+        </LI>
+      </UL>
+      <P>
+        Ficl syntax is based on ANS Forth and the code is Standard C. See below for examples of <A href="#includesficl">software and products that include ficl</A>. Ficl stands for "Forth inspired
+        command language".&nbsp;
+      </P>
+      <H3>
+        Ficl vs. other Forth interpreters
+      </H3>
+      Where Forths usually view themselves as the center of the system and expect the rest of the system to be coded in Forth, Ficl acts as a component of the system. It is easy to export code
+      written in C or ASM to Ficl in the style of TCL, or to invoke Ficl code from a compiled module. This allows you to do incremental development in a way that combines the best features of
+      threaded languages (rapid development, quick code/test/debug cycle, reasonably fast) with the best features of C (everyone knows it, easier to support large blocks of code, efficient, type
+      checking). In addition, Ficl provides a simple and powerful object model that can act as an object oriented <I>adapter</I> for code written in C (or asm, Forth, C++...).&nbsp; 
+      <H3>
+        Ficl Design goals
+      </H3>
+      <UL>
+        <LI>
+          Target 32 bit processors (<I>version 2.03 targets 64 bit processors too</I>)
+        </LI>
+        <LI>
+          Scripting, prototyping, and extension language for systems written also in C
+        </LI>
+        <LI>
+          Supportable - code is as transparent as I can make it
+        </LI>
+        <LI>
+          Interface to functions written in C
+        </LI>
+        <LI>
+          Conform to the Forth DPANS 94
+        </LI>
+        <LI>
+          Minimize porting effort - require an ANSI C runtime environment and minimal glue code
+        </LI>
+        <LI>
+          Provide object oriented extensions
+        </LI>
+      </UL>
+      <HR>
+      <H2>
+        <A name="download"></A>Download
+      </H2>
+      <UL>
+        <LI>
+          <B><A href="http://sourceforge.net/project/showfiles.php?group_id=24441">Download ficl (latest release)</A></B>
+        </LI>
+      </UL>
+      <H2>
+        <A name="tutorials"></A>Getting Started: Forth Tutorials on the Web
+      </H2>
+	  <ul>
+        <LI>
+          <A href="primer.txt">Julian Noble's Forth Primer</A> (start here if you're new to Forth)
+        </LI>
+        <LI>
+          <A href="http://www.taygeta.com/forth_intro/stackflo.html">An Introduction to Forth using Stack Flow</A>
+        </LI>
+        <LI>
+          <A href="http://www.softsynth.com/pforth/pf_tut.htm">Phil Burk's Forth Tutorial</A>
+        </LI>
+        <LI>
+          <A href="http://www.complang.tuwien.ac.at/forth/threaded-code.html">Anton Ertl's description of Threaded Code</A>
+        </LI>
+      </UL>
+      <H2>
+        <A name="links"></A>More information on Ficl and Forth
+      </H2>
+      <UL>
+        <LI>
+          <A href="http://ficl.sourceforge.net">Web home of Ficl</A>
+        </LI>
+        <LI>
+          <A href="http://ficl.sourceforge.net/pdf/Forth_Primer.pdf">An excellent Forth Primer by Hans Bezemer</A>
+        </LI>
+        <LI>
+          <A href="ficlddj.pdf">Manuscript of Ficl article for January 1999 Dr. Dobb's Journal</A>
+        </LI>
+        <LI>
+          <A href="jwsforml.pdf">1998 FORML Conference paper - OO Programming in Ficl</A>
+        </LI>
+        <LI>
+          <A href="http://ficl.sourceforge.net/dpans/dpans.htm">Draft Proposed American National Standard for Forth</A> (quite readable, actually)
+        </LI>
+        <LI>
+          <A href="http://www.taygeta.com/forthlit.html">Forth literature index on Taygeta</A>
+        </LI>
+        <LI>
+          <A href="http://www.forth.org">Forth Interest Group</A>
+        </LI>
+      </ul>
+      <H2>
+        <A name="includesficl"></A>Some software that uses ficl
+      </H2>
+      <UL>
+        <LI>
+          <A href="http://www.freebsd.org/">FreeBSD</A> boot loader (Daniel Sobral, Jordan Hubbard)
+        </LI>
+        <LI>
+          <A href="http://www.chipcenter.com/networking/images/prod/prod158a.pdf">SwitchCore</A> Gigabit Ethernet switches (&Ouml;rjan Gustavsson )
+        </LI>
+        <LI>
+          <A href="http://debuffer.sourceforge.net/">Palm Pilot Debuffer</A> (Eric Sessoms) Also see ficlx, a C++ interface to ficl, on the same site
+        </LI>
+        <LI>
+          <A href="http://www.swcp.com/~jchavez/osmond.html">Osmond PC Board Layout tool</A>
+        </LI>
+        <LI>
+          <A href="http://www.netcomsystems.com">NetCom Systems</A> ML7710
+        </LI>
+        <LI>
+          <A href="http://www.parview.com/ds/homepage.html">ParView</A> GPS system
+        </LI>
+        <LI>
+          <A href="http://www.thekompany.com/products/powerplant/software/Languages/Embedded.php3">PowerPlant Software</A> Development Environment for Linux
+        </LI>
+        <LI>
+          <A href="http://www.vyyo.com/products/architecture_v3000.html">Vyyo V3000 Broadband Wireless Hub</A>
+        </LI>
+        <LI>
+          <A href="mailto:john_sadler@alum.mit.edu"><I>Your Product Name Here!!!</I></A>
+        </LI>
+      </UL>
+      <HR>
+      <H2>
+        <A name="lawyerbait"></A>LICENSE and DISCLAIMER
+      </H2>
+      <P>
+        Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu) All rights reserved.
+      </P>
+      <P>
+        I am interested in hearing from anyone who uses ficl. If you have a problem, a success story, a defect, an enhancement request, or if you would like to contribute to the ficl release, please
+        <A href="mailto:john_sadler@alum.mit.edu">send me email</A>.&nbsp;
+      </P>
+<PRE>
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
@@ -280,1323 +200,1328 @@
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.
-</pre>
-</td>
-</tr>
-</table>
-
-&nbsp;
-<table BORDER=0 CELLSPACING=3 COLS=1 WIDTH="675" >
-<tr>
-<td>
-<h2>
-<a NAME="features"></a>Ficl features</h2>
-
-<ul>
-<li>
-Simple to integrate into existing systems: the sample implementation requires
-three Ficl function calls (see the example program in testmain.c).</li>
-
-<li>
-Written in ANSI C for portability.&nbsp;</li>
-
-<li>
-Standard: Implements the ANS Forth CORE word set, part of the CORE EXT
-word set, SEARCH and SEARCH EXT, TOOLS and part of TOOLS EXT, LOCAL and
-LOCAL EXT, EXCEPTION, MEMORY,&nbsp; and various extras.</li>
-
-<li>
-Extensible: you can export code written in Forth, C, or asm in a straightforward
-way. Ficl provides open facilities for extending the language in an application
-specific way. You can even add new control structures (not surprising if
-you're familiar with Forth)</li>
-
-<li>
-Ficl and C/C++ can interact in two ways: Ficl can wrap C code, and C functions
-can invoke ficl code.</li>
-
-<li>
-Ficl code is thread safe and re-entrant:&nbsp; All Ficl Virtual Machines share one system
-dictionary (version 3.0 will permit multiple dictionaries); 
-each Ficl Virtual Machine has an otherwise complete state,
-and each can be bound to a separate I/O channel (or none at all). An optional
-function called ficlLockDictionary() can control exclusive dictionary access.
-This function is stubbed out by default (See FICL_MULTITHREAD in sysdep.h).
-As long as there is only one "session" that can compile words into the
-dictionary, you do not need exclusive dictionary access for multithreading.
-<b>Note</b>: while the code is re-entrant, there are still restrictions on how you can
-use it safely in a multithreaded system. Specifically, the VM itself maintains
-state, so you generally need a VM per thread in a multithreaded system.
-If interrupt service routines make calls into Ficl code that alters VM
-state, then these generally need their own VM as well. Alternatively, you
-could provide a mutual exclusion mechanism to serialize access to a VM
-from multiple threads.</li>
-
-<li>
-ROMable: Ficl is designed to work in RAM based and ROM code / RAM data
-environments. It does require somewhat more memory than a pure ROM implementation
-because it builds its system dictionary in RAM at startup time.</li>
-
-<li>
-Written in ANSI C to be as simple as I can make it to understand, support,
-debug, and port. Compiles without complaint at /Az /W4 (require ANSI C,
-max. warnings) under Microsoft VC++. Ports to several other toolchains and operating systems 
-(notably FreeBSD and Linux flavors) exist.</li>
-
-<li>
-Does full 32 bit math (but you need to implement two mixed precision math
-primitives (see sysdep.c))</li>
-</ul>
-</td>
-</tr>
-</table>
-
-<hr>
-<table BORDER=0 CELLSPACING=3 COLS=1 WIDTH="675" >
-<tr>
-<td>
-<h2>
-<a NAME="porting"></a>Porting ficl</h2>
-To install ficl on your target system, you need an ANSI C compiler and
-its runtime library. Inspect the system dependent macros and functions
-in <tt>sysdep.h</tt> and <tt>sysdep.c</tt> and edit them to suit your system.
-For example, <tt>INT16</tt> is a <tt>short</tt> on some compilers and an
-<tt>int</tt>
-on others. Check the default <tt>CELL</tt> alignment controlled by <tt>FICL_ALIGN</tt>.
-If necessary, add new definitions of <tt>ficlMalloc, ficlFree, ficlRealloc</tt>, 
-and <tt>ficlTextOut</tt> to work with your operating system. Finally, use
-<tt>testmain.c</tt> as a guide to installing the ficl
-system and one or more virtual machines into your code. You do not need
-to include <tt>testmain.c</tt> in your build.&nbsp;
-<p>Note: ficlLockDictionary can be left unimplemented in most multithreaded
-implementations - it's only necessary if you expect to have more than one
-thread modifying the dictionary at the same time. If you do decide to implement
-it, make sure calls to ficlLockDictionary can nest properly (see the comments
-in sysdep.h). You need to keep count of nested locks and unlocks and do
-the right thing.
-<p>Feel free to stub out the double precision math functions (which are
-presently implemented as inline assembly because it's so easy on many 32
-bit processors) with kludge code that only goes to 32 bit precision. In
-most applications, you won't notice the difference. If you're doing a lot
-of number crunching, consider implementing them correctly.&nbsp;
-<h3>
-Build controls</h3>
-The file sysdep.h contains default values for build controls. Most of these
-are written such that if you define them on the compiler command line,
-the defaults are overridden. I suggest you take the defaults on everything
-below the "build controls" section until you're confident of your port.
-Beware of declaring too small a dictionary, for example. You need about
-3200 cells for a full system, about 2000 if you strip out most of the "soft"
-words.&nbsp;
-<h3>
-Soft Words</h3>
-Many words from all the supported wordsets are written in Forth, and stored
-as a big string that Ficl compiles when it starts. The sources for all
-of these words are in directory ficl/softwords. There is a .bat file (softcore.bat)
-and a PERL 5 script (softcore.pl) that convert Forth files into the file
-softcore.c, so softcore.c is really dependent on the Forth sources. This
-is not reflected in the Visual C++ project database. For the time being,
-it's a manual step. You can edit softcore.bat to change the list of files
-that contribute to softcore.c.&nbsp;
-<h3>
-To-Do List (target system dependent words)</h3>
-
-<ul>
-<li>
-Unimplemented system dependent <tt>CORE</tt> word: <tt>KEY</tt> (implement
-this yourself if you need it)</li>
-
-<li>
-Kludged <tt>CORE</tt> word: <tt>ACCEPT </tt>(implement this better if you
-need to)</li>
-</ul>
-</td>
-</tr>
-</table>
-
-<br>&nbsp;
-<br>&nbsp;
-<table BORDER=0 COLS=1 WIDTH="675" >
-<tr>
-<td>
-<h2>
-<a NAME="api"></a>Application Programming Interface</h2>
-The following is a partial listing of functions that interface your system
-or program to ficl. For a complete listing, see ficl.h (heavily commented).
-For examples, see testmain.c and the ficlwin sources (<a href="#download">below</a>).
-<i>See
-the comments in ficl.c and ficl.h for additional information, and the example
-in file testmain.c.</i>
-<dl>
-<dt>
-<b>FICL_SYSTEM *ficlInitSystem(int nDictCells)</b></dt>
-
-<dd>
-Initializes Ficl's shared system data structures, and creates the dictionary
-allocating the specified number of CELLs from the heap (by a call to ficlMalloc)</dd>
-
-<dt>
-<b>void ficlTermSystem(FICL_SYSTEM *pSys)</b></dt>
-
-<dd>
-Reclaims memory allocated for the ficl system including all dictionaries
-and all virtual machines created by vmCreate. Any uses of the memory allocation
-words (allocate and resize) are your problem.</dd>
-
-<dt>
-<b>int ficlBuild(FICL_SYSTEM *pSys, char *name, FICL_CODE code, char flags)</b></dt>
-
-<dd>
-Create a primitive word in ficl's main dictionary with the given name,
-code pointer, and properties (immediate, compile only, etc) as described
-by the flags (see ficl.h for flag descriptions of the form FW_XXXX)</dd>
-
-<dt>
-<b>int ficlExec(FICL_VM *pVM, char *text)</b></dt>
-
-<dd>
-Feed the specified C string ('\0' terminated) to the given virtual machine
-for evaluation. Returns various exception codes (VM_XXXX in ficl.h) to
-indicate the reason for returning. Normal exit condition is VM_OUTOFTEXT,
-indicating that the VM consumed the string successfully and is back for
-more. ficlExec calls can be nested, and the function itself is re-entrant,
-but note that a VM is static, so you have to take reasonable precautions
-(for example, use one VM per thread in a multithreaded system if you want
-multiple threads to be able to execute commands).</dd>
-
-<dt>
-<b>int ficlExecC(FICL_VM *pVM, char *text, int nChars)</b></dt>
-
-<dd>
-Same as ficlExec, but takes a count indicating the length of the supplied
-string. Setting nChars to -1 is equivalent to ficlExec (expects '\0' termination).</dd>
-
-<dt>
-<b>int ficlExecXT(FICL_VM *pVM, FICL_WORD *pFW)</b></dt>
-
-<dd>
-Same as ficlExec, but takes a pointer to a FICL_WORD instead of a string.
-Executes the word and returns after it has finished. If executing the word
-results in an exception, this function will re-throw the same code if it
-is nested under another ficlExec family function, or return the exception
-code directly if not. This function is useful if you need to execute the
-same word repeatedly - you save the dictionary search and outer interpreter
-overhead.</dd>
-
-<dt>
-<b>void ficlFreeVM(FICL_VM *pVM)</b></dt>
-
-<dd>
-Removes the VM in question from the system VM list and deletes the&nbsp;
-memory allocated to it. This is an optional call, since ficlTermSystem
-will do this cleanup for you. This function is handy if you're going to
-do a lot of dynamic creation of VMs.</dd>
-
-<dt>
-<b>FICL_VM *ficlNewVM(FICL_SYSTEM *pSys)</b></dt>
-
-<dd>
-Create, initialize, and return a VM from the heap using ficlMalloc. Links
-the VM into the system VM list for later reclamation by ficlTermSystem.</dd>
-
-<dt>
-<b>FICL_WORD *ficlLookup(FICL_SYSTEM *pSys, char *name)</b></dt>
-
-<dd>
-Returns the address (also known as an XT in this case) of the specified
-word in the main dictionary. If not found, returns NULL. The address can
-be used in a call to ficlExecXT.</dd>
-
-<dt>
-<b>FICL_DICT *ficlGetDict(FICL_SYSTEM *pSys)</b></dt>
-
-<dd>
-Returns a pointer to the main system dictionary, or NULL if the system
-is uninitialized.</dd>
-
-<dt>
-<b>FICL_DICT *ficlGetEnv(FICL_SYSTEM *pSys)</b></dt>
-
-<dd>
-Returns a pointer to the environment dictionary. This dictionary stores
-information that describes this implementation as required by the Standard.</dd>
-
-<dt>
-<b>void ficlSetEnv(FICL_SYSTEM *pSys, char *name, UNS32 value)</b></dt>
-
-<dd>
-Enters a new constant into the environment dictionary, with the specified
-name and value.</dd>
-
-<dt>
-<b>void ficlSetEnvD(FICL_SYSTEM *pSys, char *name, UNS32 hi, UNS32 lo)</b></dt>
-
-<dd>
-Enters a new double-cell constant into the environment dictionary with
-the specified name and value.</dd>
-
-<dt>
-<b>FICL_DICT *ficlGetLoc(FICL_SYSTEM *pSys)</b></dt>
-
-<dd>
-Returns a pointer to the locals dictionary. This function is defined only
-if FICL_WANT_LOCALS is #defined as non-zero (see sysdep.h). The locals
-dictionary is the symbol table for <a href="ficl_loc.html">local variables</a>.</dd>
-
-<dt>
-<b>void ficlCompileCore(FICL_SYSTEM *pSys)</b></dt>
-
-<dd>
-Defined in words.c, this function builds ficl's primitives.&nbsp;</dd>
-
-<dt>
-<b>void ficlCompileSoftCore(FICL_SYSTEM *pSys)</b></dt>
-
-<dd>
-Defined in softcore.c, this function builds ANS required words and ficl
-extras by evaluating a text string (think of it as a memory mapped file
-;-) ). The string itself is built from files in the softwords directory
-by PERL script softcore.pl.&nbsp;</dd>
-</dl>
-</td>
-</tr>
-</table>
-
-<hr>
-<table BORDER=0 CELLSPACING=5 WIDTH="675" >
-<tr>
-<td COLSPAN="2">
-<h2>
-&nbsp;<a NAME="manifest"></a>Ficl Source Files</h2>
-</td>
-</tr>
-
-<tr>
-<td><b>ficl.h</b></td>
-
-<td>Declares most public functions and all data structures. Includes sysdep.h
-and math.h</td>
-</tr>
-
-<tr>
-<td><b>sysdep.h</b></td>
-
-<td>Declares system dependent functions and contains build control macros.
-Edit this file to port to another system.</td>
-</tr>
-
-<tr>
-<td><b>math.h</b></td>
-
-<td>Declares functions for 64 bit math</td>
-</tr>
-
-<tr>
-<td><b>dict.c</b></td>
-
-<td>Dictionary</td>
-</tr>
-
-<tr>
-<td><b>ficl.c</b></td>
-
-<td>System initialization, termination, and ficlExec</td>
-</tr>
-
-<tr>
-<td><b>float.c</b></td>
-
-<td>Adds precompiled definitions from the optional FLOAT word set. Most of the file
-is conditioned on FICL_WANT_FLOAT</td>
-</tr>
-
-<tr>
-<td><b>math64.c</b></td>
-
-<td>Implementation of 64 bit math words (except the two unsigned primitives
-declared in sysdep.h and implemented in sysdep.c)</td>
-</tr>
-
-<tr>
-<td><b>prefix.c</b></td>
-
-<td>The optional prefix parse step (conditioned on FICL_EXTENDED_PREFIX). This parse step
-handles numeric constructs like 0xa100, for example. See the release notes for more
-on parse steps.</td>
-</tr>
-
-<tr>
-<td><b>search.c</b></td>
-
-<td>Contains C implementations of several of the SEARCH and SEARCH EXT
-words</td>
-</tr>
-
-<tr>
-<td><b>softcore.c</b></td>
-
-<td>Contains all of the "soft" words - those written in Forth and compiled
-by Ficl at startup time. Sources for these words are in the softwords directory.
-The files softwords/softcore.bat and softwords/softcore.pl generate softcore.c
-from the .fr sources.</td>
-</tr>
-
-<td><b>softwords/</b></td>
-
-<td>Directory contains sources and translation scripts for the words defined
-in softcore.c. Softcore.c depends on most of the files in this directory.
-See softcore.bat for the actual list of files that contribute to softcore.c.
-This is where you'll find source code for the object oriented extensions. PERL
-script softcore.pl converts the .fr files into softcore.c.</td>
-</tr>
-
-<tr>
-<td><b>stack.c</b></td>
-
-<td>Stack methods</td>
-</tr>
-
-<tr>
-<td><b>sysdep.c</b></td>
-
-<td>Implementation of system dependent functions declared in sysdep.h</td>
-</tr>
-
-<tr>
-<td><b>testmain.c</b></td>
-<td>The main() function for unix/linux/win32 console applications - use this as an
-example to integrate ficl into your system. Also contains some definitions for
-testing - also useful in unix/linux/win32 land.
-</td>
-</tr>
-
-<tr>
-<td><b>tools.c</b></td>
-
-<td>Contains C implementations of TOOLS and TOOLS EXT
-words, the debugger, and debugger support words.</td>
-</tr>
-<tr>
-
-<tr>
-<td><b>vm.c</b></td>
-
-<td>Virtual Machine methods</td>
-</tr>
-
-<tr>
-<td><b>win32.c & unix.c</b></td>
-<td>Platform extensions words loaded in ficl.c by ficlCompilePlatform() - conditioned on FICL_WANT_PLATFORM</td>
-</tr>
-
-<tr>
-<td><b>words.c</b></td>
-
-<td>Exports ficlCompileCore(), the run-time dictionary builder, and contains
-most precompiled CORE and CORE-EXT words.</td>
-</tr>
-
-</table>
-
-<hr WIDTH="100%">
-<table BORDER=0 CELLSPACING=3 COLS=1 WIDTH="675" >
-<tr>
-<td>
-<h2>
-<a NAME="extras"></a>Ficl extras</h2>
-
-<h3>
-<a NAME="exnumber"></a>Number syntax</h3>
-You can precede a number with "0x", as in C, and it will be interpreted
-as a hex value regardless of the value of <code>BASE</code>. Likewise, numbers
-prefixed with "0d" will be interpreted as decimal values. Example:
-<pre>
-ok> decimal 123 . cr
+</PRE>
+      &nbsp; 
+      <H2>
+        <A name="features"></A>Ficl features
+      </H2>
+      <UL>
+        <LI>
+          Simple to integrate into existing systems: the sample implementation requires three Ficl function calls (see the example program in testmain.c).
+        </LI>
+        <LI>
+          Written in ANSI C for portability.&nbsp;
+        </LI>
+        <LI>
+          Standard: Implements the ANS Forth CORE word set, part of the CORE EXT word set, SEARCH and SEARCH EXT, TOOLS and part of TOOLS EXT, LOCAL and LOCAL EXT, EXCEPTION, MEMORY,&nbsp; and
+          various extras.
+        </LI>
+        <LI>
+          Extensible: you can export code written in Forth, C, or asm in a straightforward way. Ficl provides open facilities for extending the language in an application specific way. You can even
+          add new control structures (not surprising if you're familiar with Forth)
+        </LI>
+        <LI>
+          Ficl and C/C++ can interact in two ways: Ficl can wrap C code, and C functions can invoke ficl code.
+        </LI>
+        <LI>
+          Ficl code is thread safe and re-entrant:&nbsp; All Ficl Virtual Machines share one system dictionary (version 3.0 will permit multiple dictionaries); each Ficl Virtual Machine has an
+          otherwise complete state, and each can be bound to a separate I/O channel (or none at all). An optional function called ficlLockDictionary() can control exclusive dictionary access. This
+          function is stubbed out by default (See FICL_MULTITHREAD in sysdep.h). As long as there is only one "session" that can compile words into the dictionary, you do not need exclusive
+          dictionary access for multithreading. <B>Note</B>: while the code is re-entrant, there are still restrictions on how you can use it safely in a multithreaded system. Specifically, the VM
+          itself maintains state, so you generally need a VM per thread in a multithreaded system. If interrupt service routines make calls into Ficl code that alters VM state, then these generally
+          need their own VM as well. Alternatively, you could provide a mutual exclusion mechanism to serialize access to a VM from multiple threads.
+        </LI>
+        <LI>
+          ROMable: Ficl is designed to work in RAM based and ROM code / RAM data environments. It does require somewhat more memory than a pure ROM implementation because it builds its system
+          dictionary in RAM at startup time.
+        </LI>
+        <LI>
+          Written in ANSI C to be as simple as I can make it to understand, support, debug, and port. Compiles without complaint at /Az /W4 (require ANSI C, max. warnings) under Microsoft VC++. Ports
+          to several other toolchains and operating systems (notably FreeBSD and Linux flavors) exist.
+        </LI>
+        <LI>
+          Does full 32 bit math (but you need to implement two mixed precision math primitives (see sysdep.c))
+        </LI>
+      </UL>
+      <HR>
+      <H2>
+        <A name="porting"></A>Porting ficl
+      </H2>
+      To install ficl on your target system, you need an ANSI C compiler and its runtime library. Inspect the system dependent macros and functions in <TT>sysdep.h</TT> and <TT>sysdep.c</TT> and edit
+      them to suit your system. For example, <TT>INT16</TT> is a <TT>short</TT> on some compilers and an <TT>int</TT> on others. Check the default <TT>CELL</TT> alignment controlled by <TT>
+      FICL_ALIGN</TT>. If necessary, add new definitions of <TT>ficlMalloc, ficlFree, ficlRealloc</TT>, and <TT>ficlTextOut</TT> to work with your operating system. Finally, use <TT>testmain.c</TT>
+      as a guide to installing the ficl system and one or more virtual machines into your code. You do not need to include <TT>testmain.c</TT> in your build.&nbsp; 
+      <P>
+        Note: ficlLockDictionary can be left unimplemented in most multithreaded implementations - it's only necessary if you expect to have more than one thread modifying the dictionary at the same
+        time. If you do decide to implement it, make sure calls to ficlLockDictionary can nest properly (see the comments in sysdep.h). You need to keep count of nested locks and unlocks and do the
+        right thing.
+      </P>
+      <P>
+        Feel free to stub out the double precision math functions (which are presently implemented as inline assembly because it's so easy on many 32 bit processors) with kludge code that only goes
+        to 32 bit precision. In most applications, you won't notice the difference. If you're doing a lot of number crunching, consider implementing them correctly.&nbsp;
+      </P>
+      <H3>
+        Build controls
+      </H3>
+      The file sysdep.h contains default values for build controls. Most of these are written such that if you define them on the compiler command line, the defaults are overridden. I suggest you
+      take the defaults on everything below the "build controls" section until you're confident of your port. Beware of declaring too small a dictionary, for example. You need about 3200 cells for a
+      full system, about 2000 if you strip out most of the "soft" words.&nbsp; 
+      <H3>
+        Soft Words
+      </H3>
+      Many words from all the supported wordsets are written in Forth, and stored as a big string that Ficl compiles when it starts. The sources for all of these words are in directory
+      ficl/softwords. There is a .bat file (softcore.bat) and a PERL 5 script (softcore.pl) that convert Forth files into the file softcore.c, so softcore.c is really dependent on the Forth sources.
+      This is not reflected in the Visual C++ project database. For the time being, it's a manual step. You can edit softcore.bat to change the list of files that contribute to softcore.c.&nbsp; 
+      <H3>
+        To-Do List (target system dependent words)
+      </H3>
+      <UL>
+        <LI>
+          Unimplemented system dependent <TT>CORE</TT> word: <TT>KEY</TT> (implement this yourself if you need it)
+        </LI>
+        <LI>
+          Kludged <TT>CORE</TT> word: <TT>ACCEPT</TT> (implement this better if you need to)
+        </LI>
+      </UL>
+      <BR>
+       &nbsp;<BR>
+       &nbsp; 
+      <H2>
+        <A name="api"></A>Application Programming Interface
+      </H2>
+      The following is a partial listing of functions that interface your system or program to ficl. For a complete listing, see ficl.h (heavily commented). For examples, see testmain.c and the
+      ficlwin sources (<A href="#download">below</A>). <I>See the comments in ficl.c and ficl.h for additional information, and the example in file testmain.c.</I> 
+      <DL>
+        <DT>
+          <B>FICL_SYSTEM *ficlInitSystem(int nDictCells)</B>
+        </DT>
+        <DD>
+          Initializes Ficl's shared system data structures, and creates the dictionary allocating the specified number of CELLs from the heap (by a call to ficlMalloc)
+        </DD>
+        <DT>
+          <B>void ficlTermSystem(FICL_SYSTEM *pSys)</B>
+        </DT>
+        <DD>
+          Reclaims memory allocated for the ficl system including all dictionaries and all virtual machines created by vmCreate. Any uses of the memory allocation words (allocate and resize) are your
+          problem.
+        </DD>
+        <DT>
+          <B>int ficlBuild(FICL_SYSTEM *pSys, char *name, FICL_CODE code, char flags)</B>
+        </DT>
+        <DD>
+          Create a primitive word in ficl's main dictionary with the given name, code pointer, and properties (immediate, compile only, etc) as described by the flags (see ficl.h for flag
+          descriptions of the form FW_XXXX)
+        </DD>
+        <DT>
+          <B>int ficlExec(FICL_VM *pVM, char *text)</B>
+        </DT>
+        <DD>
+          Feed the specified C string ('\0' terminated) to the given virtual machine for evaluation. Returns various exception codes (VM_XXXX in ficl.h) to indicate the reason for returning. Normal
+          exit condition is VM_OUTOFTEXT, indicating that the VM consumed the string successfully and is back for more. ficlExec calls can be nested, and the function itself is re-entrant, but note
+          that a VM is static, so you have to take reasonable precautions (for example, use one VM per thread in a multithreaded system if you want multiple threads to be able to execute commands).
+        </DD>
+        <DT>
+          <B>int ficlExecC(FICL_VM *pVM, char *text, int nChars)</B>
+        </DT>
+        <DD>
+          Same as ficlExec, but takes a count indicating the length of the supplied string. Setting nChars to -1 is equivalent to ficlExec (expects '\0' termination).
+        </DD>
+        <DT>
+          <B>int ficlExecXT(FICL_VM *pVM, FICL_WORD *pFW)</B>
+        </DT>
+        <DD>
+          Same as ficlExec, but takes a pointer to a FICL_WORD instead of a string. Executes the word and returns after it has finished. If executing the word results in an exception, this function
+          will re-throw the same code if it is nested under another ficlExec family function, or return the exception code directly if not. This function is useful if you need to execute the same
+          word repeatedly - you save the dictionary search and outer interpreter overhead.
+        </DD>
+        <DT>
+          <B>void ficlFreeVM(FICL_VM *pVM)</B>
+        </DT>
+        <DD>
+          Removes the VM in question from the system VM list and deletes the&nbsp; memory allocated to it. This is an optional call, since ficlTermSystem will do this cleanup for you. This function
+          is handy if you're going to do a lot of dynamic creation of VMs.
+        </DD>
+        <DT>
+          <B>FICL_VM *ficlNewVM(FICL_SYSTEM *pSys)</B>
+        </DT>
+        <DD>
+          Create, initialize, and return a VM from the heap using ficlMalloc. Links the VM into the system VM list for later reclamation by ficlTermSystem.
+        </DD>
+        <DT>
+          <B>FICL_WORD *ficlLookup(FICL_SYSTEM *pSys, char *name)</B>
+        </DT>
+        <DD>
+          Returns the address (also known as an XT in this case) of the specified word in the main dictionary. If not found, returns NULL. The address can be used in a call to ficlExecXT.
+        </DD>
+        <DT>
+          <B>FICL_DICT *ficlGetDict(FICL_SYSTEM *pSys)</B>
+        </DT>
+        <DD>
+          Returns a pointer to the main system dictionary, or NULL if the system is uninitialized.
+        </DD>
+        <DT>
+          <B>FICL_DICT *ficlGetEnv(FICL_SYSTEM *pSys)</B>
+        </DT>
+        <DD>
+          Returns a pointer to the environment dictionary. This dictionary stores information that describes this implementation as required by the Standard.
+        </DD>
+        <DT>
+          <B>void ficlSetEnv(FICL_SYSTEM *pSys, char *name, UNS32 value)</B>
+        </DT>
+        <DD>
+          Enters a new constant into the environment dictionary, with the specified name and value.
+        </DD>
+        <DT>
+          <B>void ficlSetEnvD(FICL_SYSTEM *pSys, char *name, UNS32 hi, UNS32 lo)</B>
+        </DT>
+        <DD>
+          Enters a new double-cell constant into the environment dictionary with the specified name and value.
+        </DD>
+        <DT>
+          <B>FICL_DICT *ficlGetLoc(FICL_SYSTEM *pSys)</B>
+        </DT>
+        <DD>
+          Returns a pointer to the locals dictionary. This function is defined only if FICL_WANT_LOCALS is #defined as non-zero (see sysdep.h). The locals dictionary is the symbol table for <A href= 
+          "ficl_loc.html">local variables</A>.
+        </DD>
+        <DT>
+          <B>void ficlCompileCore(FICL_SYSTEM *pSys)</B>
+        </DT>
+        <DD>
+          Defined in words.c, this function builds ficl's primitives.&nbsp;
+        </DD>
+        <DT>
+          <B>void ficlCompileSoftCore(FICL_SYSTEM *pSys)</B>
+        </DT>
+        <DD>
+          Defined in softcore.c, this function builds ANS required words and ficl extras by evaluating a text string (think of it as a memory mapped file ;-) ). The string itself is built from files
+          in the softwords directory by PERL script softcore.pl.&nbsp;
+        </DD>
+      </DL>
+      <HR>
+      <TABLE border="0" cellspacing="5" cols="2">
+        <TR>
+          <TD colspan="2">
+            <H2>
+              <A name="manifest"></A>Ficl Source Files
+            </H2>
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>ficl.h</B>
+          </TD>
+          <TD>
+            Declares most public functions and all data structures. Includes sysdep.h and math.h
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>sysdep.h</B>
+          </TD>
+          <TD>
+            Declares system dependent functions and contains build control macros. Edit this file to port to another system.
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>math.h</B>
+          </TD>
+          <TD>
+            Declares functions for 64 bit math
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>dict.c</B>
+          </TD>
+          <TD>
+            Dictionary
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>ficl.c</B>
+          </TD>
+          <TD>
+            System initialization, termination, and ficlExec
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>float.c</B>
+          </TD>
+          <TD>
+            Adds precompiled definitions from the optional FLOAT word set. Most of the file is conditioned on FICL_WANT_FLOAT
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>math64.c</B>
+          </TD>
+          <TD>
+            Implementation of 64 bit math words (except the two unsigned primitives declared in sysdep.h and implemented in sysdep.c)
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>prefix.c</B>
+          </TD>
+          <TD>
+            The optional prefix parse step (conditioned on FICL_EXTENDED_PREFIX). This parse step handles numeric constructs like 0xa100, for example. See the release notes for more on parse steps.
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>search.c</B>
+          </TD>
+          <TD>
+            Contains C implementations of several of the SEARCH and SEARCH EXT words
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>softcore.c</B>
+          </TD>
+          <TD>
+            Contains all of the "soft" words - those written in Forth and compiled by Ficl at startup time. Sources for these words are in the softwords directory. The files softwords/softcore.bat
+            and softwords/softcore.pl generate softcore.c from the .fr sources.
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>softwords/</B>
+          </TD>
+          <TD>
+            Directory contains sources and translation scripts for the words defined in softcore.c. Softcore.c depends on most of the files in this directory. See softcore.bat for the actual list of
+            files that contribute to softcore.c. This is where you'll find source code for the object oriented extensions. PERL script softcore.pl converts the .fr files into softcore.c.
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>stack.c</B>
+          </TD>
+          <TD>
+            Stack methods
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>sysdep.c</B>
+          </TD>
+          <TD>
+            Implementation of system dependent functions declared in sysdep.h
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>testmain.c</B>
+          </TD>
+          <TD>
+            The main() function for unix/linux/win32 console applications - use this as an example to integrate ficl into your system. Also contains some definitions for testing - also useful in
+            unix/linux/win32 land.
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>tools.c</B>
+          </TD>
+          <TD>
+            Contains C implementations of TOOLS and TOOLS EXT words, the debugger, and debugger support words.
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>vm.c</B>
+          </TD>
+          <TD>
+            Virtual Machine methods
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>win32.c &amp; unix.c</B>
+          </TD>
+          <TD>
+            Platform extensions words loaded in ficl.c by ficlCompilePlatform() - conditioned on FICL_WANT_PLATFORM
+          </TD>
+        </TR>
+        <TR>
+          <TD>
+            <B>words.c</B>
+          </TD>
+          <TD>
+            Exports ficlCompileCore(), the run-time dictionary builder, and contains most precompiled CORE and CORE-EXT words.
+          </TD>
+        </TR>
+      </TABLE>
+      <HR>
+      <H2>
+        <A name="extras"></A>Ficl extras
+      </H2>
+      <H3>
+        <A name="exnumber"></A>Number syntax
+      </H3>
+      You can precede a number with "0x", as in C, and it will be interpreted as a hex value regardless of the value of <CODE>BASE</CODE>. Likewise, numbers prefixed with "0d" will be interpreted as
+      decimal values. Example: 
+<PRE>
+ok&gt; decimal 123 . cr
 123
-ok> 0x123 . cr
+ok&gt; 0x123 . cr
 291
-ok> 0x123 x. cr
+ok&gt; 0x123 x. cr
 123
-</pre>
-Note: ficl2.05 and later - this behavior is controlled by the <a href="ficl_parse.html">prefix parser</a> defined in 
-<code>prefix.c</code>. You can add other prefixes by defining handlers for them in ficl or C.
-
-<h3><a NAME="exsearch"></a>
-The <code>SEARCH</code> wordset and Ficl extensions
-</h3>
-<p>Ficl implements many of the search order words in terms of two primitives
-called <code><a href="#tosearch">>SEARCH</a></code> and <code><a href="#searchfrom">SEARCH></a></code>.
-As their names suggest (assuming you're familiar with Forth), they push
-and pop the search order stack.</p>
-<p>The standard does not appear to specify any conditions under which
-the search order is reset to a sane state. Ficl resets the search order
-to its default state whenever <tt>ABORT</tt> happens. This includes stack
-underflows and overflows. <tt>QUIT</tt> does not affect the search order.
-The minimum search order (set by <tt>ONLY</tt>) is equivalent to</p>
-<pre>
+</PRE>
+      Note: ficl2.05 and later - this behavior is controlled by the <A href="ficl_parse.html">prefix parser</A> defined in <CODE>prefix.c</CODE>. You can add other prefixes by defining handlers for
+      them in ficl or C. 
+      <H3>
+        <A name="exsearch"></A> The <CODE>SEARCH</CODE> wordset and Ficl extensions
+      </H3>
+      <P>
+        Ficl implements many of the search order words in terms of two primitives called <CODE><A href="#tosearch">&gt;SEARCH</A></CODE> and <CODE><A href="#searchfrom">SEARCH&gt;</A></CODE>. As
+        their names suggest (assuming you're familiar with Forth), they push and pop the search order stack.
+      </P>
+      <P>
+        The standard does not appear to specify any conditions under which the search order is reset to a sane state. Ficl resets the search order to its default state whenever <TT>ABORT</TT>
+        happens. This includes stack underflows and overflows. <TT>QUIT</TT> does not affect the search order. The minimum search order (set by <TT>ONLY</TT>) is equivalent to
+      </P>
+<PRE>
 FORTH-WORDLIST 1 SET-ORDER
-</pre>
-<p>There is a default maximum of 16 wordlists in the search order. This can
-be changed by redefining FICL_DEFAULT_VOCS (declared in sysdep.h).</p>
-<p><b>Note</b>: Ficl resets the search order whenever it does <tt>ABORT</tt>.
-If you don't like this behavior, just comment out the dictResetSearchOrder()
-lines in ficlExec().</p>
-<dl>
-<dt><a NAME="tosearch"></a><code>>search   ( wid -- )</code></dt>
-<dd>
-Push <tt>wid</tt> onto the search order. Many of the other search order
-words are written in terms of the <tt>SEARCH></tt> and <tt>>SEARCH</tt>
-primitives. This word can be defined in ANS Forth as follows</dd>
-
-<dd>
-<tt>: >search&nbsp;&nbsp; >r get-order 1+ r> swap set-order ;</tt></dd>
-
-<dt>
-<a NAME="searchfrom"></a><tt>search>&nbsp;&nbsp; ( -- wid )</tt></dt>
-
-<dd>
-Pop <tt>wid</tt> off the search order (can be coded in ANS Forth as&nbsp;<tt>
-: search>&nbsp; get-order nip 1- set-order ;</tt> )</dd>
-
-<dt>
-<a NAME="ficlsetcurrent"></a><tt>ficl-set-current&nbsp;&nbsp; ( wid --
-old-wid )</tt></dt>
-
-<dd>
-Set wid as compile wordlist, leaving the previous compile wordlist on the
-stack</dd>
-
-<dt>
-<a NAME="ficlvocabulary"></a><tt>ficl-vocabulary&nbsp;&nbsp; ( nBins "name"
--- )</tt></dt>
-
-<dd>
-Creates a <tt>ficl-wordlist</tt> with the specified number of hash table
-bins, binds it to the name, and associates the semantics of <tt>vocabulary</tt>
-with it (replaces the top wid in the search order list with its own wid
-when executed)</dd>
-
-<dt>
-<a NAME="ficlwordlist"></a><tt>ficl-wordlist&nbsp;&nbsp; ( nBins -- wid
-)</tt></dt>
-
-<dd>
-Creates a wordlist with the specified number of hash table bins, and leaves
-the address of the wordlist on the stack. A <tt>ficl-wordlist</tt> behaves
-exactly as a regular wordlist, but it may search faster depending on the
-number of bins chosen and the number of words it contains at search time.
-As implemented in ficl, a wordlist is single threaded by default. <tt>ficl-named-wordlist</tt>
-takes a name for the wordlist and creates a word that pushes the <tt>wid</tt>.
-This is by contrast to <tt>VOCABULARY</tt>, which also has a name, but
-replaces the top of the search order with its <tt>wid</tt>.</dd>
-
-<dt>
-<a NAME="ficlforgetwid"></a><tt>forget-wid&nbsp;&nbsp; ( wid -- )</tt></dt>
-
-<dd>
-Iterates through the specified wordlist and unlinks all definitions whose
-xt addresses are greater than or equal to the value of <tt>HERE</tt>, the
-dictionary fill pointer.&nbsp;</dd>
-
-<dt>
-<a NAME="ficlhide"></a><tt>hide&nbsp;&nbsp; ( -- current-wid-was )</tt></dt>
-
-<dd>
-Push the <tt>hidden</tt> wordlist onto the search order, and set it as
-the current compile wordlist (unsing <tt>ficl-set-current</tt>). Leaves
-the previous compile wordlist ID. I use this word to hide implementation
-factor words that have low reuse potential so that they don't clutter the
-default wordlist. To undo the effect of hide, execute&nbsp; <b><tt>previous
-set-current</tt></b></dd>
-
-<dt>
-<a NAME="ficlhidden"></a><tt>hidden&nbsp;&nbsp; ( -- wid )</tt></dt>
-
-<dd>
-Wordlist for storing implementation factors of ficl provided words. To
-see what's in there, try:&nbsp; <b><tt>hide words previous set-current</tt></b></dd>
-
-<dt>
-<a NAME="wid-get-name"></a><tt>wid-get-name&nbsp;&nbsp; ( wid -- c-addr
-u )</tt></dt>
-
-<dd>
-Ficl wordlists (2.05 and later) have a name property that can be assigned.
-This is used by <tt>ORDER</tt> to list the names of wordlists in the search
-order.&nbsp;</dd>
-
-<dt>
-<a NAME="wid-set-name"></a><tt>wid-set-name&nbsp;&nbsp; ( c-addr wid --
-)</tt></dt>
-
-<dd>
-Ficl wordlists (2.05 and later) have a name property that can be assigned.
-This is used by <tt>ORDER</tt> to list the names of wordlists in the search
-order. The name is assumed to be a \0 terminated string (C style), which
-conveniently is how Ficl stores word names.&nbsp; See softwords/softcore.fr
-definition of <tt>brand-wordlist</tt>&nbsp;</dd>
-
-<dt>
-<a NAME="wid-set-super"></a><tt>wid-set-super&nbsp;&nbsp; ( wid -- )</tt></dt>
-
-<dd>
-Ficl wordlists have a parent wordlist pointer that is not specified in
-standard Forth. Ficl initializes this pointer to NULL whenever it creates
-a wordlist, so it ordinarily has no effect. This word sets the parent pointer
-to the wordlist specified on the top of the stack. Ficl's implementation
-of <tt>SEARCH-WORDLIST</tt> will chain backward through the parent link
-of the wordlist when searching. This simplifies Ficl's object model in
-that the search order does not need to reflect an object's class hierarchy
-when searching for a method. It is possible to implement Ficl object syntax
-in strict ANS Forth, but method finders need to manipulate the search order
-explicitly.</dd>
-</dl>
-
-<h3>
-<a NAME="exuser"></a>User variables</h3>
-
-<dl>
-<dt>
-<tt>user&nbsp;&nbsp; ( -- ) name</tt></dt>
-
-<dd>
-Create a user variable with the given name. User variables are virtual
-machine local. Each VM allocates a fixed amount of storage for them. You
-can change the maximum number of user variables allowed by defining FICL_USER_CELLS
-on your compiiler's command line. Default is 16 user cells. User variables
-behave like <tt>VARIABLE</tt>s in all other respects (you use @ and ! on
-them, for example). Example:</dd>
-
-<dl>
-<dd>
-<tt>user current-class</tt></dd>
-
-<dd>
-<tt>0 current-class !</tt></dd>
-</dl>
-</dl>
-
-<h3>
-<a NAME="exmisc"></a>Miscellaneous</h3>
-
-<dl>
-<dt>
-<tt>-roll&nbsp;&nbsp; ( xu xu-1 ... x0 u -- x0 xu-1 ... x1 )&nbsp;</tt></dt>
-
-<dd>
-Rotate u+1 items on top of the stack after removing u. Rotation is in the
-opposite sense to <tt>ROLL</tt></dd>
-</dl>
-
-<dl>
-<dt>
-<a NAME="minusrot"></a><tt>-rot&nbsp;&nbsp; ( a b c -- c a b )</tt></dt>
-
-<dd>
-Rotate the top three stack entries, moving the top of stack to third place.
-I like to think of this as <tt>1<sup>1</sup>/<sub>2</sub>swap</tt> because
-it's good for tucking a single cell value behind a cell-pair (like an object).&nbsp;</dd>
-</dl>
-
-<dl>
-<dt>
-<tt>.env&nbsp;&nbsp; ( -- )</tt></dt>
-
-<dd>
-List all environment variables of the system</dd>
-
-<dt>
-<tt>.hash&nbsp;&nbsp; ( -- )</tt></dt>
-
-<dd>
-List hash table performance statistics of the wordlist that's first in
-the search order</dd>
-
-<dt>
-<tt>.ver&nbsp;&nbsp; ( -- )</tt></dt>
-
-<dd>
-Display ficl version ID</dd>
-
-<dt>
-<tt>>name&nbsp;&nbsp; ( xt -- c-addr u )</tt></dt>
-
-<dd>
-Convert a word's execution token into the address and length of its name</dd>
-
-<dt>
-<tt>body>&nbsp;&nbsp; ( a-addr -- xt )</tt></dt>
-
-<dd>
-Reverses the effect of <tt>CORE</tt> word <tt>>body </tt>(converts a parameter
-field address to an execution token)</dd>
-
-<dt>
-<tt>compile-only</tt></dt>
-
-<dd>
-Mark the most recently defined word as being executable only while in compile
-state. Many <tt>immediate</tt> words have this property.</dd>
-
-<dt>
-<tt>empty&nbsp;&nbsp; ( -- )</tt>&nbsp;</dt>
-
-<dd>
-Empty the parameter stack</dd>
-
-<dt>
-<tt>endif</tt></dt>
-
-<dd>
-Synonym for <tt>THEN</tt></dd>
-
-<dt>
-<a NAME="last-word"></a><tt>last-word&nbsp;&nbsp; ( -- xt )</tt></dt>
-
-<dd>
-Pushes the xt address of the most recently defined word. This applies to
-colon definitions, constants, variables, and words that use <tt>create</tt>.
-You can print the name of the most recently defined word with&nbsp;</dd>
-<b><tt>last-word >name type</tt>&nbsp;</b>
-
-<dt>
-<tt>parse-word&nbsp;&nbsp; ( &lt;spaces>name -- c-addr u )</tt></dt>
-
-<dd>
-Skip leading spaces and parse name delimited by a space. c-addr is the
-address within the input buffer and u is the length of the selected string.
-If the parse area is empty, the resulting string has a zero length. (From
-the Standard)</dd>
-
-<dt>
-<a NAME="qfetch"></a><tt>q@&nbsp;&nbsp; ( addr -- x )</tt></dt>
-
-<dd>
-Fetch a 32 bit quantity from the specified address</dd>
-
-<dt>
-<a NAME="qbang"></a><tt>q!&nbsp;&nbsp; ( x addr -- )</tt></dt>
-
-<dd>
-Store a 32 bit quantity to the specified address&nbsp;</dd>
-
-<dt>
-<tt>w@&nbsp;&nbsp; ( addr -- x )</tt></dt>
-
-<dd>
-Fetch a 16 bit quantity from the specified address</dd>
-
-<dt>
-<tt>w!&nbsp;&nbsp; ( x addr -- )</tt></dt>
-
-<dd>
-Store a 16 bit quantity to the specified address (the low 16 bits of the
-given value)</dd>
-
-<dt>
-<a NAME="xdot"></a><tt>x.&nbsp;&nbsp; ( x -- )</tt></dt>
-
-<dd>
-Pop and display the value in hex format, regardless of the current value
-of <tt>BASE</tt></dd>
-</dl>
-
-<h3>
-<a NAME="exficlwin"></a>Extra words defined in testmain.c (Win32 and POSIX versions)</h3>
-
-<dl>
-<dt>
-<tt>break&nbsp;&nbsp; ( -- )</tt></dt>
-
-<dd>
-Does nothing - just a handy place to set a debugger breakpoint</dd>
-
-<dt>
-<tt>cd&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ( "directory-name&lt;newline>" --
-)</tt></dt>
-
-<dd>
-Executes the Win32 chdir() function, changing the program's logged directory.</dd>
-
-<dt>
-<a NAME="clock"></a><tt>clock&nbsp;&nbsp; ( -- now )</tt></dt>
-
-<dd>
-Wrapper for the ANSI C clock() function. Returns the number of clock ticks
-elapsed since process start.</dd>
-
-<dt>
-<a NAME="clockspersec"></a><tt>clocks/sec&nbsp;&nbsp; ( -- clocks_per_sec
-)</tt></dt>
-
-<dd>
-Pushes the number of ticks in a second as returned by <tt>clock</tt></dd>
-
-<dt>
-<a NAME="ficlload"></a><tt>load&nbsp;&nbsp;&nbsp; ( "filename&lt;newline>"
--- )</tt></dt>
-
-<dd>
-Opens the Forth source file specified and loads it one line at a time,
-like <tt>INCLUDED (FILE)</tt></dd>
-
-<dt>
-<tt>pwd&nbsp;&nbsp;&nbsp;&nbsp; ( -- )</tt></dt>
-
-<dd>
-Prints the current working directory as set by <tt>cd</tt></dd>
-
-<dt>
-<tt>system&nbsp; ( "command&lt;newline>" -- )</tt></dt>
-
-<dd>
-Issues a command to a shell; implemented with the Win32 system() call.</dd>
-
-<dt>
-<tt>spewhash&nbsp;&nbsp; ( "filename&lt;newline>" -- )</tt></dt>
-
-<dd>
-Dumps all threads of the current compilation wordlist to the specified
-text file. This was useful when I thought there might be some point in
-attempting to optimize the hash function. I no longer harbor those illusions.</dd>
-</dl>
-
-<h3>
-Words defined in FiclWin only</h3>
-
-<dl>
-<dt>
-<tt>!oreg&nbsp;&nbsp; ( c -- )</tt></dt>
-
-<dd>
-Set the value of the simulated LED register as specified (0..255)</dd>
-
-<dt>
-<tt>@ireg&nbsp;&nbsp; ( -- c )</tt></dt>
-
-<dd>
-Gets the value of the simulated switch block (0..255)</dd>
-
-<dt>
-<tt>!dac&nbsp;&nbsp;&nbsp; ( c -- )</tt></dt>
-
-<dd>
-Sets the value of the bargraph control as specified. Valid values range
-from 0..255</dd>
-
-<dt>
-<tt>@adc&nbsp;&nbsp;&nbsp; ( -- c )</tt></dt>
-
-<dd>
-Fetches the current position of the slider control. Range is 0..255</dd>
-
-<dt>
-<tt>status"&nbsp;&nbsp; ( "ccc&lt;quote>" -- )</tt></dt>
-
-<dd>
-Set the mainframe window's status line to the text specified, up to the
-first trailing quote character.</dd>
-
-<dt>
-<a NAME="ficlms"></a><tt><a href="http://www.taygeta.com/forth/dpans10.htm#10.6.2.1905">ms</a>&nbsp;&nbsp;
-( u -- )</tt></dt>
-
-<dd>
-Causes the running virtual machine to sleep() for the number of milliseconds
-specified by the top-of-stack value.</dd>
-</dl>
-</td>
-</tr>
-</table>
-
-<hr>
-<h2>
-<a NAME="ansinfo"></a>ANS Required Information</h2>
-
-<table BORDER=0 CELLSPACING=3 COLS=1 WIDTH="675" >
-<tr>
-<td><b>ANS Forth System</b>
-<br><b>Providing names from the Core Extensions word set&nbsp;</b>
-<br><b>Providing the Exception word set</b>
-<br><b>Providing names from the Exception Extensions word set</b>
-<br><b>Providing the Locals word set&nbsp;</b>
-<br><b>Providing the Locals Extensions word set&nbsp;</b>
-<br><b>Providing the Memory Allocation word set</b>
-<br><b>Providing the Programming-Tools word set</b>
-<br><b>Providing names from the Programming-Tools Extensions word set</b>
-<br><b>Providing the Search-Order word set</b>
-<br><b>Providing the Search-Order Extensions word set</b>
-<h3>
-Implementation-defined Options</h3>
-The implementation-defined items in the following list represent characteristics
-and choices left to the discretion of the implementor, provided that the
-requirements of the Standard are met. A system shall document the values
-for, or behaviors of, each item.&nbsp;
-<ul>
-<li>
-<b>aligned address requirements (3.1.3.3 Addresses);</b>&nbsp;</li>
-
-<br><font color="#000000">System dependent. You can change the default
-address alignment by defining FICL_ALIGN on your compiler's command line.
-The default value is set to 2 in sysdep.h. This causes dictionary entries
-and <tt>ALIGN</tt> and <tt>ALIGNED</tt> to align on 4 byte boundaries.
-To align on <b>2<sup>n</sup></b> byte boundaries, set FICL_ALIGN to <b>n</b>.&nbsp;</font>
-<li>
-<b>behavior of 6.1.1320 EMIT for non-graphic characters</b>;&nbsp;</li>
-
-<br><font color="#000000">Depends on target system, C runtime library,
-and your implementation of ficlTextOut().</font>
-<li>
-<b>character editing of 6.1.0695 ACCEPT and 6.2.1390 EXPECT</b>;&nbsp;</li>
-
-<br><font color="#000000">None implemented in the versions supplied in
-words.c. Because ficlExec() is supplied a text buffer externally, it's
-up to your system to define how that buffer will be obtained.</font>
-<li>
-<b>character set (3.1.2 Character types, 6.1.1320 EMIT, 6.1.1750 KEY)</b>;&nbsp;</li>
-
-<br><font color="#000000">Depends on target system and implementation of
-ficlTextOut()</font>
-<li>
-<b>character-aligned address requirements (3.1.3.3 Addresses)</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl characters are one byte each. There are
-no alignment requirements.</font>
-<li>
-<b>character-set-extensions matching characteristics (3.4.2 Finding definition
-n<font color="#000000">ames)</font></b><font color="#000000">;&nbsp;</font></li>
-
-<br><font color="#000000">No special processing is performed on characters
-beyond case-folding. Therefore, extended characters will not match their
-unaccented counterparts.</font>
-<li>
-<b>conditions under which control characters match a space delimiter (3.4.1.1
-Delimiters)</b>;<font color="#FF6666">&nbsp;</font></li>
-
-<br><font color="#000000">Ficl uses the Standard C function isspace() to
-distinguish space characters. The rest is up to your library vendor.</font>
-<li>
-<b>format of the control-flow stack (3.2.3.2 Control-flow stack)</b>;&nbsp;</li>
-
-<br><font color="#000000">Uses the data stack</font>
-<li>
-<b>conversion of digits larger than thirty-five (3.2.1.2 Digit conversion)</b>;&nbsp;</li>
-
-<br><font color="#000000">The maximum supported value of <tt>BASE</tt>
-is 36. Ficl will assertion fail in function ltoa of vm.c if the base is
-found to be larger than 36 or smaller than 2. There will be no effect if
-NDEBUG is defined</font>, however, other than possibly unexpected behavior.&nbsp;
-<li>
-<b>display after input terminates in 6.1.0695 ACCEPT and 6.2.1390 EXPECT</b>;&nbsp;</li>
-
-<br><font color="#000000">Target system dependent</font>
-<li>
-<b>exception abort sequence (as in 6.1.0680 ABORT")</b>;&nbsp;</li>
-
-<br><font color="#000000">Does <tt>ABORT</tt></font>
-<li>
-<b>input line terminator (3.2.4.1 User input device)</b>;<font color="#FF0000">&nbsp;</font></li>
-
-<br><font color="#000000">Target system dependent (implementation of outer
-loop that calls ficlExec)</font>
-<li>
-<b>maximum size of a counted string, in characters (3.1.3.4 Counted strings,
-6.1.2450 WORD)</b>;&nbsp;</li>
-
-<br><font color="#000000">255</font>
-<li>
-<b>maximum size of a parsed string (3.4.1 Parsing)</b>;&nbsp;</li>
-
-<br>Limited by available memory and the maximum unsigned value that can
-fit in a CELL (2<sup>32</sup>-1).&nbsp;
-<li>
-<b>maximum size of a definition name, in characters (3.3.1.2 Definition
-names)</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl stores the first 31 characters of a definition
-name.</font>
-<li>
-<b>maximum string length for 6.1.1345 ENVIRONMENT?, in characters</b>;&nbsp;</li>
-
-<br><font color="#000000">Same as maximum definition name length</font>
-<li>
-<b>method of selecting 3.2.4.1 User input device</b>;&nbsp;</li>
-
-<br>None supported. This is up to the target system&nbsp;
-<li>
-<b>method of selecting 3.2.4.2 User output device</b>;&nbsp;</li>
-
-<br>None supported. This is up to the target system&nbsp;
-<li>
-<b>methods of dictionary compilation (3.3 The Forth dictionary)</b>;&nbsp;</li>
-
-<li>
-<b>number of bits in one address unit (3.1.3.3 Addresses)</b>;&nbsp;</li>
-
-<br><font color="#000000">Target system dependent. Ficl generally supports
-processors that can address 8 bit quantities, but there is no dependency
-that I'm aware of.</font>
-<li>
-<b>number representation and arithmetic (3.2.1.1 Internal number representation)</b>;&nbsp;</li>
-
-<br>System dependent. Ficl represents a CELL internally as a union that
-can hold INT32 (a signed 32 bit scalar value), UNS32 (32 bits unsigned),
-and an untyped pointer. No specific byte ordering is assumed.&nbsp;
-<li>
-<b>ranges for n, +n, u, d, +d, and ud (3.1.3 Single-cell types, 3.1.4 Cell-pair
-types)</b>;&nbsp;</li>
-
-<br>Assuming a 32 bit implementation, range for signed single-cell values
-is -2<sup>31</sup>..2<sup>31</sup>-1. Range for unsigned single cell values
-is 0..2<sup>32</sup>-1. Range for signed double-cell values is -2<sup>63</sup>..2<sup>63</sup>-1.
-Range for unsigned single cell values is 0..2<sup>64</sup>-1.&nbsp;
-<li>
-<b>read-only data-space regions (3.3.3 Data space)</b>;</li>
-
-<br>None&nbsp;
-<li>
-<b>size of buffer at 6.1.2450 WORD (3.3.3.6 Other transient regions)</b>;&nbsp;</li>
-
-<br>Default is 255. Depends on the setting of nPAD in ficl.h.&nbsp;
-<li>
-<b>size of one cell in address units (3.1.3 Single-cell types)</b>;&nbsp;</li>
-
-<br><font color="#000000">System dependent, generally four.</font>
-<li>
-<b>size of one character in address units (3.1.2 Character types)</b>;&nbsp;</li>
-
-<br><font color="#000000">System dependent, generally one.</font>
-<li>
-<b>size of the keyboard terminal input buffer (3.3.3.5 Input buffers)</b>;&nbsp;</li>
-
-<br><font color="#000000">This buffer is supplied by the host program.
-Ficl imposes no practical limit.</font>
-<li>
-<b>size of the pictured numeric output string buffer (3.3.3.6 Other transient
-regions)</b>;&nbsp;</li>
-
-<br>Default is 255 characters. Depends on the setting of nPAD in ficl.h.&nbsp;
-<li>
-<b>size of the scratch area whose address is returned by 6.2.2000 PAD (3.3.3.6
-Other transient regions)</b>;&nbsp;</li>
-
-<br>Not presently supported&nbsp;
-<li>
-<b>system case-sensitivity characteristics (3.4.2 Finding definition names)</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl is not case sensitive</font>
-<li>
-<b>system prompt (3.4 The Forth text interpreter, 6.1.2050 QUIT)</b>;&nbsp;</li>
-
-<br><font color="#000000">"ok>"</font>
-<li>
-<b>type of division rounding (3.2.2.1 Integer division, 6.1.0100 */, 6.1.0110
-*/MOD, 6.1.0230 /, 6.1.0240 /MOD, 6.1.1890 MOD)</b>;&nbsp;</li>
-
-<br><font color="#000000">Symmetric</font>
-<li>
-<b>values of 6.1.2250 STATE when true</b>;&nbsp;</li>
-
-<br><font color="#000000">One (no others)</font>
-<li>
-<b>values returned after arithmetic overflow (3.2.2.2 Other integer operations)</b>;&nbsp;</li>
-
-<br>System dependent. Ficl makes no special checks for overflow.&nbsp;
-<li>
-<b>whether the current definition can be found after 6.1.1250 DOES> (6.1.0450
-:)</b>.&nbsp;</li>
-
-<br><font color="#000000">No. Definitions are unsmudged after ; only, and
-only then if no control structure matching problems have been detected.</font></ul>
-
-<h3>
-Ambiguous Conditions</h3>
-A system shall document the system action taken upon each of the general
-or specific ambiguous conditions identified in this Standard. See 3.4.4
-Possible actions on an ambiguous condition.&nbsp;
-<p>The following general ambiguous conditions could occur because of a
-combination of factors:&nbsp;
-<ul>
-<li>
-<b>a name is neither a valid definition name nor a valid number during
-text interpretation (3.4 The Forth text interpreter)</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl does <tt>ABORT</tt> and prints the name
-followed by " not found".</font>
-<li>
-<b>a definition name exceeded the maximum length allowed (3.3.1.2 Definition
-names)</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl stores the first 31 characters of the definition
-name, and uses all characters of the name in computing its hash code. The
-actual length of the name, up to 255 characters, is stored in the definition's
-length field.</font>
-<li>
-<b>addressing a region not listed in 3.3.3 Data Space</b>;&nbsp;</li>
-
-<br><font color="#000000">No problem: all addresses in ficl are absolute.
-You can reach any 32 bit address in Ficl's address space.</font>
-<li>
-<b>argument type incompatible with specified input parameter, e.g., passing
-a flag to a word expecting an n (3.1 Data types)</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl makes no check for argument type compatibility.
-Effects of a mismatch vary widely depending on the specific problem and
-operands.</font>
-<li>
-<b>attempting to obtain the execution token, (e.g., with 6.1.0070 ', 6.1.1550
-FIND, etc.) of a definition with undefined interpretation semantics</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl returns a valid token, but the result of
-executing that token while interpreting may be undesirable.</font>
-<li>
-<b>dividing by zero (6.1.0100 */, 6.1.0110 */MOD, 6.1.0230 /, 6.1.0240
-/MOD, 6.1.1561 FM/MOD, 6.1.1890 MOD, 6.1.2214 SM/REM, 6.1.2370 UM/MOD,
-8.6.1.1820 M*/)</b>;</li>
-
-<br><font color="#000000">Results are target procesor dependent. Generally,
-Ficl makes no check for divide-by-zero. The target processor will probably
-throw an exception.</font>
-<li>
-<b>insufficient data-stack space or return-stack space (stack overflow)</b>;&nbsp;</li>
-
-<br><font color="#000000">With FICL_ROBUST (sysdep.h) set >= 2, most parameter
-stack operations are checked for underflow and overflow. Ficl does not
-check the return stack.</font>
-<li>
-<b>insufficient space for loop-control parameters</b>;&nbsp;</li>
-
-<br><font color="#000000">No check - Evil results.</font>
-<li>
-<b>insufficient space in the dictionary</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl generates an error message if the dictionary
-is too full to create a definition header. It checks <tt>ALLOT</tt> as
-well, but it is possible to make an unchecked allocation request that overflows
-the dictionary.</font>
-<li>
-<b>interpreting a word with undefined interpretation semantics</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl protects all ANS Forth words with undefined
-interpretation semantics from being executed while in interpret state.
-It is possible to defeat this protection using ' (tick) and <tt>EXECUTE</tt>,
-though.</font>
-<li>
-<b>modifying the contents of the input buffer or a string literal (3.3.3.4
-Text-literal regions, 3.3.3.5 Input buffers)</b>;&nbsp;</li>
-
-<br><font color="#000000">Varies depending on the nature of the buffer.
-The input buffer is supplied by ficl's host function, and may reside in
-read-only memory. If so, writing the input buffer can ganerate an exception.
-String literals are stored in the dictionary, and are writable.</font>
-<li>
-<b>overflow of a pictured numeric output string</b>;</li>
-
-<br>In the unlikely event you are able to construct a pictured numeric
-string of more than 255 characters, the system will be corrupted unpredictably.
-The buffer area that holds pictured numeric output is at the end of the
-virtual machine. Whatever is mapped after the offending VM in memory will
-be trashed, along with the heap structures that contain it.&nbsp;
-<li>
-<b>parsed string overflow</b>;</li>
-
-<br>Ficl does not copy parsed strings unless asked to. Ordinarily, a string
-parsed from the input buffer during normal interpretation is left in-place,
-so there is no possibility of overflow. If you ask to parse a string into
-the dictionary, as in <tt>SLITERAL</tt>, you need to have enough room for
-the string, otherwise bad things may happen. This is not usually a problem.&nbsp;
-<li>
-<b>producing a result out of range, e.g., multiplication (using *) results
-in a value too big to be represented by a single-cell integer (6.1.0090
-*, 6.1.0100 */, 6.1.0110 */MOD, 6.1.0570 >NUMBER, 6.1.1561 FM/MOD, 6.1.2214
-SM/REM, 6.1.2370 UM/MOD, 6.2.0970 CONVERT, 8.6.1.1820 M*/)</b>;&nbsp;</li>
-
-<br><font color="#000000">Value will be truncated</font>
-<li>
-<b>reading from an empty data stack or return stack (stack underflow)</b>;&nbsp;</li>
-
-<br><font color="#000000">Most stack underflows are detected and prevented
-if FICL_ROBUST (sysdep.h) is set to 2 or greater. Otherwise, the stack
-pointer and size are likely to be trashed.</font>
-<li>
-<b>unexpected end of input buffer, resulting in an attempt to use a zero-length
-string as a name</b>;&nbsp;</li>
-
-<br><font color="#000000">Ficl returns for a new input buffer until a non-empty
-one is supplied.</font></ul>
-The following specific ambiguous conditions are noted in the glossary entries
-of the relevant words:&nbsp;
-<ul>
-<li>
-<b>>IN greater than size of input buffer (3.4.1 Parsing)</b></li>
-
-<br>Bad Things occur - unpredictable bacause the input buffer is supplied
-by the host program's outer loop.&nbsp;
-<li>
-<b>6.1.2120 RECURSE appears after 6.1.1250 DOES></b></li>
-
-<br>It finds the address of the definition before <tt>DOES></tt>
-<li>
-<b>argument input source different than current input source for 6.2.2148
-RESTORE-INPUT</b></li>
-
-<br>Not implemented&nbsp;
-<li>
-<b>data space containing definitions is de-allocated (3.3.3.2 Contiguous
-regions)</b></li>
-
-<br>This is OK until the cells are overwritten with something else. The
-dictionary maintains a hash table, and the table must be updated in order
-to de-allocate words without corruption.&nbsp;
-<li>
-<b>data space read/write with incorrect alignment (3.3.3.1 Address alignment)</b></li>
-
-<br>Target processor dependent. Consequences include: none (Intel), address
-error exception (68K).&nbsp;
-<li>
-<b>data-space pointer not properly aligned (6.1.0150 ,, 6.1.0860 C,)</b></li>
-
-<br>See above on data space read/write alignment&nbsp;
-<li>
-<b>less than u+2 stack items (6.2.2030 PICK, 6.2.2150 ROLL)</b></li>
-
-<br>Ficl detects a stack underflow and reports it, executing <tt>ABORT,</tt>
-as long as FICL_ROBUST is two or larger.&nbsp;
-<li>
-<b>loop-control parameters not available ( 6.1.0140 +LOOP, 6.1.1680 I,
-6.1.1730 J, 6.1.1760 LEAVE, 6.1.1800 LOOP, 6.1.2380 UNLOOP)</b></li>
-
-<br>Loop initiation words are responsible for checking the stack and guaranteeing
-that the control parameters are pushed. Any underflows will be detected
-early if FICL_ROBUST is set to two or greater. Note however that Ficl only
-checks for return stack underflows at the end of each line of text.&nbsp;
-<li>
-<b>most recent definition does not have a name (6.1.1710 IMMEDIATE)</b></li>
-
-<br>No problem.&nbsp;
-<li>
-<b>name not defined by 6.2.2405 VALUE used by 6.2.2295 TO</b></li>
-
-<br>Ficl's version of <tt>TO</tt> works correctly with <tt>VALUE</tt>s,
-<tt>CONSTANT</tt>s
-and <tt>VARIABLE</tt>s.&nbsp;
-<li>
-<b>name not found (6.1.0070 ', 6.1.2033 POSTPONE, 6.1.2510 ['], 6.2.2530
-[COMPILE])</b></li>
-
-<br>Ficl prints an error message and does <tt>ABORT</tt>
-<li>
-<b>parameters are not of the same type (6.1.1240 DO, 6.2.0620 ?DO, 6.2.2440
-WITHIN)</b></li>
-
-<br>No check. Results vary depending on the specific problem.&nbsp;
-<li>
-<b>6.1.2033 POSTPONE or 6.2.2530 [COMPILE] applied to 6.2.2295 TO</b></li>
-
-<br>The word is postponed correctly.&nbsp;
-<li>
-<b>string longer than a counted string returned by 6.1.2450 WORD</b></li>
-
-<br>Ficl stores the first FICL_STRING_MAX-1 chars in the destination buffer.
-(The extra character is the trailing space required by the standard. Yuck.)&nbsp;
-<li>
-<b>u greater than or equal to the number of bits in a cell (6.1.1805 LSHIFT,
-6.1.2162 RSHIFT)</b></li>
-
-<br>Depends on target process or and C runtime library implementations
-of the &lt;&lt; and >> operators on unsigned values. For I386, the processor
-appears to shift modulo the number of bits in a cell.&nbsp;
-<li>
-<b>word not defined via 6.1.1000 CREATE (6.1.0550 >BODY, 6.1.1250 DOES>)</b></li>
-
-<br><b>words improperly used outside 6.1.0490 &lt;# and 6.1.0040 #> (6.1.0030
-#, 6.1.0050 #S, 6.1.1670 HOLD, 6.1.2210 SIGN)</b>
-<br>Don't. <tt>CREATE</tt> reserves a field in words it builds for <tt>DOES></tt>to
-fill in. If you use <tt>DOES></tt> on a word not made by <tt>CREATE</tt>,
-it will overwrite the first cell of its parameter area. That's probably
-not what you want. Likewise, pictured numeric words assume that there is
-a string under construction in the VM's scratch buffer. If that's not the
-case, results may be unpleasant.</ul>
-
-<h3>
-Locals Implementation-defined options</h3>
-
-<ul>
-<li>
-<b>maximum number of locals in a definition (13.3.3 Processing locals,
-13.6.2.1795 LOCALS|)</b></li>
-
-<br>Default is 16. Change by redefining FICL_MAX_LOCALS, defined in sysdep.h</ul>
-
-<h3>
-Locals Ambiguous conditions</h3>
-
-<ul>
-<li>
-<b>executing a named local while in interpretation state (13.6.1.0086 (LOCAL))</b></li>
-
-<br>Locals can be found in interpretation state while in the context of
-a definition under construction. Under these circumstances, locals behave
-correctly. Locals are not visible at all outside the scope of a definition.&nbsp;
-<li>
-<b>name not defined by VALUE or LOCAL (13.6.1.2295 TO)</b></li>
-
-<br>See the CORE ambiguous conditions, above (no change)</ul>
-
-<h3>
-Programming Tools Implementation-defined options</h3>
-
-<ul>
-<li>
-<b>source and format of display by 15.6.1.2194 SEE</b></li>
-
-<br>SEE de-compiles definitions from the dictionary. Because Ficl words
-are threaded by their header addresses, it is very straightforward to print
-the name and other characteristics of words in a definition. Primitives
-are so noted. Colon definitions are decompiled, but branch target labels
-are not reconstructed. Literals and string literals are so noted, and their
-contents displayed.</ul>
-
-<h3>
-Search Order Implementation-defined options</h3>
-
-<ul>
-<li>
-<b>maximum number of word lists in the search order (16.3.3 Finding definition
-names, 16.6.1.2197 SET-ORDER)</b>&nbsp;</li>
-
-<br>Defaults to 16. Can be changed by redefining FICL_DEFAULT_VOCS, declared
-in sysdep.h&nbsp;
-<li>
-<b>minimum search order (16.6.1.2197 SET-ORDER, 16.6.2.1965 ONLY)</b>&nbsp;</li>
-
-<br>Equivalent to <tt>FORTH-WORDLIST 1 SET-ORDER</tt></ul>
-
-<h3>
-Search Order Ambiguous conditions</h3>
-
-<ul>
-<li>
-<b>changing the compilation word list (16.3.3 Finding definition names)</b></li>
-
-<br>Ficl stores a link to the current definition independently of the compile
-wordlist while it is being defined, and links it into the compile wordlist
-only after the definition completes successfully. Changing the compile
-wordlist mid-definition will cause the definition to link into the <i>new</i>
-compile wordlist.&nbsp;
-<li>
-<b>search order empty (16.6.2.2037 PREVIOUS)</b></li>
-
-<br>Ficl prints an error message if the search order underflows, and resets
-the order to its default state.&nbsp;
-<li>
-<b>too many word lists in search order (16.6.2.0715 ALSO)</b></li>
+</PRE>
+      <P>
+        There is a default maximum of 16 wordlists in the search order. This can be changed by redefining FICL_DEFAULT_VOCS (declared in sysdep.h).
+      </P>
+      <P>
+        <B>Note</B>: Ficl resets the search order whenever it does <TT>ABORT</TT>. If you don't like this behavior, just comment out the dictResetSearchOrder() lines in ficlExec().
+      </P>
+      <DL>
+        <DT>
+          <A name="tosearch"></A><CODE>&gt;search ( wid -- )</CODE>
+        </DT>
+        <DD>
+          Push <TT>wid</TT> onto the search order. Many of the other search order words are written in terms of the <TT>SEARCH&gt;</TT> and <TT>&gt;SEARCH</TT> primitives. This word can be defined in
+          ANS Forth as follows
+        </DD>
+        <DD>
+          <TT>: &gt;search&nbsp;&nbsp; &gt;r get-order 1+ r&gt; swap set-order ;</TT>
+        </DD>
+        <DT>
+          <A name="searchfrom"></A><TT>search&gt;&nbsp;&nbsp; ( -- wid )</TT>
+        </DT>
+        <DD>
+          Pop <TT>wid</TT> off the search order (can be coded in ANS Forth as&nbsp;<TT>: search&gt;&nbsp; get-order nip 1- set-order ;</TT> )
+        </DD>
+        <DT>
+          <A name="ficlsetcurrent"></A><TT>ficl-set-current&nbsp;&nbsp; ( wid -- old-wid )</TT>
+        </DT>
+        <DD>
+          Set wid as compile wordlist, leaving the previous compile wordlist on the stack
+        </DD>
+        <DT>
+          <A name="ficlvocabulary"></A><TT>ficl-vocabulary&nbsp;&nbsp; ( nBins "name" -- )</TT>
+        </DT>
+        <DD>
+          Creates a <TT>ficl-wordlist</TT> with the specified number of hash table bins, binds it to the name, and associates the semantics of <TT>vocabulary</TT> with it (replaces the top wid in the
+          search order list with its own wid when executed)
+        </DD>
+        <DT>
+          <A name="ficlwordlist"></A><TT>ficl-wordlist&nbsp;&nbsp; ( nBins -- wid )</TT>
+        </DT>
+        <DD>
+          Creates a wordlist with the specified number of hash table bins, and leaves the address of the wordlist on the stack. A <TT>ficl-wordlist</TT> behaves exactly as a regular wordlist, but it
+          may search faster depending on the number of bins chosen and the number of words it contains at search time. As implemented in ficl, a wordlist is single threaded by default. <TT>
+          ficl-named-wordlist</TT> takes a name for the wordlist and creates a word that pushes the <TT>wid</TT>. This is by contrast to <TT>VOCABULARY</TT>, which also has a name, but replaces the
+          top of the search order with its <TT>wid</TT>.
+        </DD>
+        <DT>
+          <A name="ficlforgetwid"></A><TT>forget-wid&nbsp;&nbsp; ( wid -- )</TT>
+        </DT>
+        <DD>
+          Iterates through the specified wordlist and unlinks all definitions whose xt addresses are greater than or equal to the value of <TT>HERE</TT>, the dictionary fill pointer.&nbsp;
+        </DD>
+        <DT>
+          <A name="ficlhide"></A><TT>hide&nbsp;&nbsp; ( -- current-wid-was )</TT>
+        </DT>
+        <DD>
+          Push the <TT>hidden</TT> wordlist onto the search order, and set it as the current compile wordlist (unsing <TT>ficl-set-current</TT>). Leaves the previous compile wordlist ID. I use this
+          word to hide implementation factor words that have low reuse potential so that they don't clutter the default wordlist. To undo the effect of hide, execute&nbsp; <B><TT>previous
+          set-current</TT></B>
+        </DD>
+        <DT>
+          <A name="ficlhidden"></A><TT>hidden&nbsp;&nbsp; ( -- wid )</TT>
+        </DT>
+        <DD>
+          Wordlist for storing implementation factors of ficl provided words. To see what's in there, try:&nbsp; <B><TT>hide words previous set-current</TT></B>
+        </DD>
+        <DT>
+          <A name="wid-get-name"></A><TT>wid-get-name&nbsp;&nbsp; ( wid -- c-addr u )</TT>
+        </DT>
+        <DD>
+          Ficl wordlists (2.05 and later) have a name property that can be assigned. This is used by <TT>ORDER</TT> to list the names of wordlists in the search order.&nbsp;
+        </DD>
+        <DT>
+          <A name="wid-set-name"></A><TT>wid-set-name&nbsp;&nbsp; ( c-addr wid -- )</TT>
+        </DT>
+        <DD>
+          Ficl wordlists (2.05 and later) have a name property that can be assigned. This is used by <TT>ORDER</TT> to list the names of wordlists in the search order. The name is assumed to be a \0
+          terminated string (C style), which conveniently is how Ficl stores word names.&nbsp; See softwords/softcore.fr definition of <TT>brand-wordlist</TT>&nbsp;
+        </DD>
+        <DT>
+          <A name="wid-set-super"></A><TT>wid-set-super&nbsp;&nbsp; ( wid -- )</TT>
+        </DT>
+        <DD>
+          Ficl wordlists have a parent wordlist pointer that is not specified in standard Forth. Ficl initializes this pointer to NULL whenever it creates a wordlist, so it ordinarily has no effect.
+          This word sets the parent pointer to the wordlist specified on the top of the stack. Ficl's implementation of <TT>SEARCH-WORDLIST</TT> will chain backward through the parent link of the
+          wordlist when searching. This simplifies Ficl's object model in that the search order does not need to reflect an object's class hierarchy when searching for a method. It is possible to
+          implement Ficl object syntax in strict ANS Forth, but method finders need to manipulate the search order explicitly.
+        </DD>
+      </DL>
+      <H3>
+        <A name="exuser"></A>User variables
+      </H3>
+      <DL>
+        <DT>
+          <TT>user&nbsp;&nbsp; ( -- ) name</TT>
+        </DT>
+        <DD>
+          Create a user variable with the given name. User variables are virtual machine local. Each VM allocates a fixed amount of storage for them. You can change the maximum number of user
+          variables allowed by defining FICL_USER_CELLS on your compiiler's command line. Default is 16 user cells. User variables behave like <TT>VARIABLE</TT>s in all other respects (you use @ and
+          ! on them, for example). Example:
+        </DD>
+        <DD>
+          <DL>
+            <DD>
+              <TT>user current-class</TT>
+            </DD>
+            <DD>
+              <TT>0 current-class !</TT>
+            </DD>
+          </DL>
+        </DD>
+      </DL>
+      <H3>
+        <A name="exmisc"></A>Miscellaneous
+      </H3>
+      <DL>
+        <DT>
+          <TT>-roll&nbsp;&nbsp; ( xu xu-1 ... x0 u -- x0 xu-1 ... x1 )&nbsp;</TT>
+        </DT>
+        <DD>
+          Rotate u+1 items on top of the stack after removing u. Rotation is in the opposite sense to <TT>ROLL</TT>
+        </DD>
+      </DL>
+      <DL>
+        <DT>
+          <A name="minusrot"></A><TT>-rot&nbsp;&nbsp; ( a b c -- c a b )</TT>
+        </DT>
+        <DD>
+          Rotate the top three stack entries, moving the top of stack to third place. I like to think of this as <TT>1<SUP>1</SUP>/<SUB>2</SUB>swap</TT> because it's good for tucking a single cell
+          value behind a cell-pair (like an object).&nbsp;
+        </DD>
+      </DL>
+      <DL>
+        <DT>
+          <TT>.env&nbsp;&nbsp; ( -- )</TT>
+        </DT>
+        <DD>
+          List all environment variables of the system
+        </DD>
+        <DT>
+          <TT>.hash&nbsp;&nbsp; ( -- )</TT>
+        </DT>
+        <DD>
+          List hash table performance statistics of the wordlist that's first in the search order
+        </DD>
+        <DT>
+          <TT>.ver&nbsp;&nbsp; ( -- )</TT>
+        </DT>
+        <DD>
+          Display ficl version ID
+        </DD>
+        <DT>
+          <TT>&gt;name&nbsp;&nbsp; ( xt -- c-addr u )</TT>
+        </DT>
+        <DD>
+          Convert a word's execution token into the address and length of its name
+        </DD>
+        <DT>
+          <TT>body&gt;&nbsp;&nbsp; ( a-addr -- xt )</TT>
+        </DT>
+        <DD>
+          Reverses the effect of <TT>CORE</TT> word <TT>&gt;body</TT> (converts a parameter field address to an execution token)
+        </DD>
+        <DT>
+          <TT>compile-only</TT>
+        </DT>
+        <DD>
+          Mark the most recently defined word as being executable only while in compile state. Many <TT>immediate</TT> words have this property.
+        </DD>
+        <DT>
+          <TT>empty&nbsp;&nbsp; ( -- )</TT>&nbsp;
+        </DT>
+        <DD>
+          Empty the parameter stack
+        </DD>
+        <DT>
+          <TT>endif</TT>
+        </DT>
+        <DD>
+          Synonym for <TT>THEN</TT>
+        </DD>
+        <DT>
+          <A name="last-word"></A><TT>last-word&nbsp;&nbsp; ( -- xt )</TT>
+        </DT>
+        <DD>
+          Pushes the xt address of the most recently defined word. This applies to colon definitions, constants, variables, and words that use <TT>create</TT>. You can print the name of the most
+          recently defined word with&nbsp;
+        </DD>
+        <DD>
+          <B><TT>last-word &gt;name type</TT>&nbsp;</B>
+        </DD>
+        <DT>
+          <TT>parse-word&nbsp;&nbsp; ( &lt;spaces&gt;name -- c-addr u )</TT>
+        </DT>
+        <DD>
+          Skip leading spaces and parse name delimited by a space. c-addr is the address within the input buffer and u is the length of the selected string. If the parse area is empty, the resulting
+          string has a zero length. (From the Standard)
+        </DD>
+        <DT>
+          <A name="qfetch"></A><TT>q@&nbsp;&nbsp; ( addr -- x )</TT>
+        </DT>
+        <DD>
+          Fetch a 32 bit quantity from the specified address
+        </DD>
+        <DT>
+          <A name="qbang"></A><TT>q!&nbsp;&nbsp; ( x addr -- )</TT>
+        </DT>
+        <DD>
+          Store a 32 bit quantity to the specified address&nbsp;
+        </DD>
+        <DT>
+          <TT>w@&nbsp;&nbsp; ( addr -- x )</TT>
+        </DT>
+        <DD>
+          Fetch a 16 bit quantity from the specified address
+        </DD>
+        <DT>
+          <TT>w!&nbsp;&nbsp; ( x addr -- )</TT>
+        </DT>
+        <DD>
+          Store a 16 bit quantity to the specified address (the low 16 bits of the given value)
+        </DD>
+        <DT>
+          <A name="xdot"></A><TT>x.&nbsp;&nbsp; ( x -- )</TT>
+        </DT>
+        <DD>
+          Pop and display the value in hex format, regardless of the current value of <TT>BASE</TT>
+        </DD>
+      </DL>
+      <H3>
+        <A name="exficlwin"></A>Extra words defined in testmain.c (Win32 and POSIX versions)
+      </H3>
+      <DL>
+        <DT>
+          <TT>break&nbsp;&nbsp; ( -- )</TT>
+        </DT>
+        <DD>
+          Does nothing - just a handy place to set a debugger breakpoint
+        </DD>
+        <DT>
+          <TT>cd&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ( "directory-name&lt;newline&gt;" -- )</TT>
+        </DT>
+        <DD>
+          Executes the Win32 chdir() function, changing the program's logged directory.
+        </DD>
+        <DT>
+          <A name="clock"></A><TT>clock&nbsp;&nbsp; ( -- now )</TT>
+        </DT>
+        <DD>
+          Wrapper for the ANSI C clock() function. Returns the number of clock ticks elapsed since process start.
+        </DD>
+        <DT>
+          <A name="clockspersec"></A><TT>clocks/sec&nbsp;&nbsp; ( -- clocks_per_sec )</TT>
+        </DT>
+        <DD>
+          Pushes the number of ticks in a second as returned by <TT>clock</TT>
+        </DD>
+        <DT>
+          <A name="ficlload"></A><TT>load&nbsp;&nbsp;&nbsp; ( "filename&lt;newline&gt;" -- )</TT>
+        </DT>
+        <DD>
+          Opens the Forth source file specified and loads it one line at a time, like <TT>INCLUDED (FILE)</TT>
+        </DD>
+        <DT>
+          <TT>pwd&nbsp;&nbsp;&nbsp;&nbsp; ( -- )</TT>
+        </DT>
+        <DD>
+          Prints the current working directory as set by <TT>cd</TT>
+        </DD>
+        <DT>
+          <TT>system&nbsp; ( "command&lt;newline&gt;" -- )</TT>
+        </DT>
+        <DD>
+          Issues a command to a shell; implemented with the Win32 system() call.
+        </DD>
+        <DT>
+          <TT>spewhash&nbsp;&nbsp; ( "filename&lt;newline&gt;" -- )</TT>
+        </DT>
+        <DD>
+          Dumps all threads of the current compilation wordlist to the specified text file. This was useful when I thought there might be some point in attempting to optimize the hash function. I no
+          longer harbor those illusions.
+        </DD>
+      </DL>
+      <H3>
+        Words defined in FiclWin only
+      </H3>
+      <DL>
+        <DT>
+          <TT>!oreg&nbsp;&nbsp; ( c -- )</TT>
+        </DT>
+        <DD>
+          Set the value of the simulated LED register as specified (0..255)
+        </DD>
+        <DT>
+          <TT>@ireg&nbsp;&nbsp; ( -- c )</TT>
+        </DT>
+        <DD>
+          Gets the value of the simulated switch block (0..255)
+        </DD>
+        <DT>
+          <TT>!dac&nbsp;&nbsp;&nbsp; ( c -- )</TT>
+        </DT>
+        <DD>
+          Sets the value of the bargraph control as specified. Valid values range from 0..255
+        </DD>
+        <DT>
+          <TT>@adc&nbsp;&nbsp;&nbsp; ( -- c )</TT>
+        </DT>
+        <DD>
+          Fetches the current position of the slider control. Range is 0..255
+        </DD>
+        <DT>
+          <TT>status"&nbsp;&nbsp; ( "ccc&lt;quote&gt;" -- )</TT>
+        </DT>
+        <DD>
+          Set the mainframe window's status line to the text specified, up to the first trailing quote character.
+        </DD>
+        <DT>
+          <A name="ficlms"></A><TT><A href="http://www.taygeta.com/forth/dpans10.htm#10.6.2.1905">ms</A>&nbsp;&nbsp; ( u -- )</TT>
+        </DT>
+        <DD>
+          Causes the running virtual machine to sleep() for the number of milliseconds specified by the top-of-stack value.
+        </DD>
+      </DL>
+      <HR>
+      <H2>
+        <A name="ansinfo"></A>ANS Required Information
+      </H2>
+      <B>ANS Forth System</B><BR>
+       <B>Providing names from the Core Extensions word set&nbsp;</B><BR>
+       <B>Providing the Exception word set</B><BR>
+       <B>Providing names from the Exception Extensions word set</B><BR>
+       <B>Providing the Locals word set&nbsp;</B><BR>
+       <B>Providing the Locals Extensions word set&nbsp;</B><BR>
+       <B>Providing the Memory Allocation word set</B><BR>
+       <B>Providing the Programming-Tools word set</B><BR>
+       <B>Providing names from the Programming-Tools Extensions word set</B><BR>
+       <B>Providing the Search-Order word set</B><BR>
+       <B>Providing the Search-Order Extensions word set</B> 
+      <H3>
+        Implementation-defined Options
+      </H3>
+      The implementation-defined items in the following list represent characteristics and choices left to the discretion of the implementor, provided that the requirements of the Standard are met. A
+      system shall document the values for, or behaviors of, each item.&nbsp; 
+      <UL>
+        <LI>
+          <B>aligned address requirements (3.1.3.3 Addresses);</B>&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">System dependent. You can change the default address alignment by defining FICL_ALIGN on your compiler's command line. The default value is set to 2 in sysdep.h. This
+          causes dictionary entries and <TT>ALIGN</TT> and <TT>ALIGNED</TT> to align on 4 byte boundaries. To align on <B>2<SUP>n</SUP></B> byte boundaries, set FICL_ALIGN to <B>n</B>.&nbsp;</FONT>
+        </LI>
+        <LI>
+          <B>behavior of 6.1.1320 EMIT for non-graphic characters</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Depends on target system, C runtime library, and your implementation of ficlTextOut().</FONT>
+        </LI>
+        <LI>
+          <B>character editing of 6.1.0695 ACCEPT and 6.2.1390 EXPECT</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">None implemented in the versions supplied in words.c. Because ficlExec() is supplied a text buffer externally, it's up to your system to define how that buffer will
+          be obtained.</FONT>
+        </LI>
+        <LI>
+          <B>character set (3.1.2 Character types, 6.1.1320 EMIT, 6.1.1750 KEY)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Depends on target system and implementation of ficlTextOut()</FONT>
+        </LI>
+        <LI>
+          <B>character-aligned address requirements (3.1.3.3 Addresses)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl characters are one byte each. There are no alignment requirements.</FONT>
+        </LI>
+        <LI>
+          <B>character-set-extensions matching characteristics (3.4.2 Finding definition n<FONT color="#000000">ames)</FONT></B><FONT color="#000000">;&nbsp;</FONT>
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">No special processing is performed on characters beyond case-folding. Therefore, extended characters will not match their unaccented counterparts.</FONT>
+        </LI>
+        <LI>
+          <B>conditions under which control characters match a space delimiter (3.4.1.1 Delimiters)</B>;<FONT color="#FF6666">&nbsp;</FONT>
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl uses the Standard C function isspace() to distinguish space characters. The rest is up to your library vendor.</FONT>
+        </LI>
+        <LI>
+          <B>format of the control-flow stack (3.2.3.2 Control-flow stack)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Uses the data stack</FONT>
+        </LI>
+        <LI>
+          <B>conversion of digits larger than thirty-five (3.2.1.2 Digit conversion)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">The maximum supported value of <TT>BASE</TT> is 36. Ficl will assertion fail in function ltoa of vm.c if the base is found to be larger than 36 or smaller than 2.
+          There will be no effect if NDEBUG is defined</FONT>, however, other than possibly unexpected behavior.&nbsp;
+        </LI>
+        <LI>
+          <B>display after input terminates in 6.1.0695 ACCEPT and 6.2.1390 EXPECT</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Target system dependent</FONT>
+        </LI>
+        <LI>
+          <B>exception abort sequence (as in 6.1.0680 ABORT")</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Does <TT>ABORT</TT></FONT>
+        </LI>
+        <LI>
+          <B>input line terminator (3.2.4.1 User input device)</B>;<FONT color="#FF0000">&nbsp;</FONT>
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Target system dependent (implementation of outer loop that calls ficlExec)</FONT>
+        </LI>
+        <LI>
+          <B>maximum size of a counted string, in characters (3.1.3.4 Counted strings, 6.1.2450 WORD)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">255</FONT>
+        </LI>
+        <LI>
+          <B>maximum size of a parsed string (3.4.1 Parsing)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           Limited by available memory and the maximum unsigned value that can fit in a CELL (2<SUP>32</SUP>-1).&nbsp;
+        </LI>
+        <LI>
+          <B>maximum size of a definition name, in characters (3.3.1.2 Definition names)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl stores the first 31 characters of a definition name.</FONT>
+        </LI>
+        <LI>
+          <B>maximum string length for 6.1.1345 ENVIRONMENT?, in characters</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Same as maximum definition name length</FONT>
+        </LI>
+        <LI>
+          <B>method of selecting 3.2.4.1 User input device</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           None supported. This is up to the target system&nbsp;
+        </LI>
+        <LI>
+          <B>method of selecting 3.2.4.2 User output device</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           None supported. This is up to the target system&nbsp;
+        </LI>
+        <LI>
+          <B>methods of dictionary compilation (3.3 The Forth dictionary)</B>;&nbsp;
+        </LI>
+        <LI>
+          <B>number of bits in one address unit (3.1.3.3 Addresses)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Target system dependent. Ficl generally supports processors that can address 8 bit quantities, but there is no dependency that I'm aware of.</FONT>
+        </LI>
+        <LI>
+          <B>number representation and arithmetic (3.2.1.1 Internal number representation)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           System dependent. Ficl represents a CELL internally as a union that can hold INT32 (a signed 32 bit scalar value), UNS32 (32 bits unsigned), and an untyped pointer. No specific byte
+          ordering is assumed.&nbsp;
+        </LI>
+        <LI>
+          <B>ranges for n, +n, u, d, +d, and ud (3.1.3 Single-cell types, 3.1.4 Cell-pair types)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           Assuming a 32 bit implementation, range for signed single-cell values is -2<SUP>31</SUP>..2<SUP>31</SUP>-1. Range for unsigned single cell values is 0..2<SUP>32</SUP>-1. Range for signed
+          double-cell values is -2<SUP>63</SUP>..2<SUP>63</SUP>-1. Range for unsigned single cell values is 0..2<SUP>64</SUP>-1.&nbsp;
+        </LI>
+        <LI>
+          <B>read-only data-space regions (3.3.3 Data space)</B>;
+        </LI>
+        <LI>
+          <BR>
+           None&nbsp;
+        </LI>
+        <LI>
+          <B>size of buffer at 6.1.2450 WORD (3.3.3.6 Other transient regions)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           Default is 255. Depends on the setting of nPAD in ficl.h.&nbsp;
+        </LI>
+        <LI>
+          <B>size of one cell in address units (3.1.3 Single-cell types)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">System dependent, generally four.</FONT>
+        </LI>
+        <LI>
+          <B>size of one character in address units (3.1.2 Character types)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">System dependent, generally one.</FONT>
+        </LI>
+        <LI>
+          <B>size of the keyboard terminal input buffer (3.3.3.5 Input buffers)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">This buffer is supplied by the host program. Ficl imposes no practical limit.</FONT>
+        </LI>
+        <LI>
+          <B>size of the pictured numeric output string buffer (3.3.3.6 Other transient regions)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           Default is 255 characters. Depends on the setting of nPAD in ficl.h.&nbsp;
+        </LI>
+        <LI>
+          <B>size of the scratch area whose address is returned by 6.2.2000 PAD (3.3.3.6 Other transient regions)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           Not presently supported&nbsp;
+        </LI>
+        <LI>
+          <B>system case-sensitivity characteristics (3.4.2 Finding definition names)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl is not case sensitive</FONT>
+        </LI>
+        <LI>
+          <B>system prompt (3.4 The Forth text interpreter, 6.1.2050 QUIT)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">"ok&gt;"</FONT>
+        </LI>
+        <LI>
+          <B>type of division rounding (3.2.2.1 Integer division, 6.1.0100 */, 6.1.0110 */MOD, 6.1.0230 /, 6.1.0240 /MOD, 6.1.1890 MOD)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Symmetric</FONT>
+        </LI>
+        <LI>
+          <B>values of 6.1.2250 STATE when true</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">One (no others)</FONT>
+        </LI>
+        <LI>
+          <B>values returned after arithmetic overflow (3.2.2.2 Other integer operations)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           System dependent. Ficl makes no special checks for overflow.&nbsp;
+        </LI>
+        <LI>
+          <B>whether the current definition can be found after 6.1.1250 DOES&gt; (6.1.0450 :)</B>.&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">No. Definitions are unsmudged after ; only, and only then if no control structure matching problems have been detected.</FONT>
+        </LI>
+      </UL>
+      <H3>
+        Ambiguous Conditions
+      </H3>
+      A system shall document the system action taken upon each of the general or specific ambiguous conditions identified in this Standard. See 3.4.4 Possible actions on an ambiguous
+      condition.&nbsp; 
+      <P>
+        The following general ambiguous conditions could occur because of a combination of factors:&nbsp;
+      </P>
+      <UL>
+        <LI>
+          <B>a name is neither a valid definition name nor a valid number during text interpretation (3.4 The Forth text interpreter)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl does <TT>ABORT</TT> and prints the name followed by " not found".</FONT>
+        </LI>
+        <LI>
+          <B>a definition name exceeded the maximum length allowed (3.3.1.2 Definition names)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl stores the first 31 characters of the definition name, and uses all characters of the name in computing its hash code. The actual length of the name, up to 255
+          characters, is stored in the definition's length field.</FONT>
+        </LI>
+        <LI>
+          <B>addressing a region not listed in 3.3.3 Data Space</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">No problem: all addresses in ficl are absolute. You can reach any 32 bit address in Ficl's address space.</FONT>
+        </LI>
+        <LI>
+          <B>argument type incompatible with specified input parameter, e.g., passing a flag to a word expecting an n (3.1 Data types)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl makes no check for argument type compatibility. Effects of a mismatch vary widely depending on the specific problem and operands.</FONT>
+        </LI>
+        <LI>
+          <B>attempting to obtain the execution token, (e.g., with 6.1.0070 ', 6.1.1550 FIND, etc.) of a definition with undefined interpretation semantics</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl returns a valid token, but the result of executing that token while interpreting may be undesirable.</FONT>
+        </LI>
+        <LI>
+          <B>dividing by zero (6.1.0100 */, 6.1.0110 */MOD, 6.1.0230 /, 6.1.0240 /MOD, 6.1.1561 FM/MOD, 6.1.1890 MOD, 6.1.2214 SM/REM, 6.1.2370 UM/MOD, 8.6.1.1820 M*/)</B>;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Results are target procesor dependent. Generally, Ficl makes no check for divide-by-zero. The target processor will probably throw an exception.</FONT>
+        </LI>
+        <LI>
+          <B>insufficient data-stack space or return-stack space (stack overflow)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">With FICL_ROBUST (sysdep.h) set &gt;= 2, most parameter stack operations are checked for underflow and overflow. Ficl does not check the return stack.</FONT>
+        </LI>
+        <LI>
+          <B>insufficient space for loop-control parameters</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">No check - Evil results.</FONT>
+        </LI>
+        <LI>
+          <B>insufficient space in the dictionary</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl generates an error message if the dictionary is too full to create a definition header. It checks <TT>ALLOT</TT> as well, but it is possible to make an unchecked
+          allocation request that overflows the dictionary.</FONT>
+        </LI>
+        <LI>
+          <B>interpreting a word with undefined interpretation semantics</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl protects all ANS Forth words with undefined interpretation semantics from being executed while in interpret state. It is possible to defeat this protection using
+          ' (tick) and <TT>EXECUTE</TT>, though.</FONT>
+        </LI>
+        <LI>
+          <B>modifying the contents of the input buffer or a string literal (3.3.3.4 Text-literal regions, 3.3.3.5 Input buffers)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Varies depending on the nature of the buffer. The input buffer is supplied by ficl's host function, and may reside in read-only memory. If so, writing the input
+          buffer can ganerate an exception. String literals are stored in the dictionary, and are writable.</FONT>
+        </LI>
+        <LI>
+          <B>overflow of a pictured numeric output string</B>;
+        </LI>
+        <LI>
+          <BR>
+           In the unlikely event you are able to construct a pictured numeric string of more than 255 characters, the system will be corrupted unpredictably. The buffer area that holds pictured
+          numeric output is at the end of the virtual machine. Whatever is mapped after the offending VM in memory will be trashed, along with the heap structures that contain it.&nbsp;
+        </LI>
+        <LI>
+          <B>parsed string overflow</B>;
+        </LI>
+        <LI>
+          <BR>
+           Ficl does not copy parsed strings unless asked to. Ordinarily, a string parsed from the input buffer during normal interpretation is left in-place, so there is no possibility of overflow.
+          If you ask to parse a string into the dictionary, as in <TT>SLITERAL</TT>, you need to have enough room for the string, otherwise bad things may happen. This is not usually a problem.&nbsp;
+        </LI>
+        <LI>
+          <B>producing a result out of range, e.g., multiplication (using *) results in a value too big to be represented by a single-cell integer (6.1.0090 *, 6.1.0100 */, 6.1.0110 */MOD, 6.1.0570
+          &gt;NUMBER, 6.1.1561 FM/MOD, 6.1.2214 SM/REM, 6.1.2370 UM/MOD, 6.2.0970 CONVERT, 8.6.1.1820 M*/)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Value will be truncated</FONT>
+        </LI>
+        <LI>
+          <B>reading from an empty data stack or return stack (stack underflow)</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Most stack underflows are detected and prevented if FICL_ROBUST (sysdep.h) is set to 2 or greater. Otherwise, the stack pointer and size are likely to be
+          trashed.</FONT>
+        </LI>
+        <LI>
+          <B>unexpected end of input buffer, resulting in an attempt to use a zero-length string as a name</B>;&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           <FONT color="#000000">Ficl returns for a new input buffer until a non-empty one is supplied.</FONT>
+        </LI>
+      </UL>
+      The following specific ambiguous conditions are noted in the glossary entries of the relevant words:&nbsp; 
+      <UL>
+        <LI>
+          <B>&gt;IN greater than size of input buffer (3.4.1 Parsing)</B>
+        </LI>
+        <LI>
+          <BR>
+           Bad Things occur - unpredictable bacause the input buffer is supplied by the host program's outer loop.&nbsp;
+        </LI>
+        <LI>
+          <B>6.1.2120 RECURSE appears after 6.1.1250 DOES&gt;</B>
+        </LI>
+        <LI>
+          <BR>
+           It finds the address of the definition before <TT>DOES&gt;</TT>
+        </LI>
+        <LI>
+          <B>argument input source different than current input source for 6.2.2148 RESTORE-INPUT</B>
+        </LI>
+        <LI>
+          <BR>
+           Not implemented&nbsp;
+        </LI>
+        <LI>
+          <B>data space containing definitions is de-allocated (3.3.3.2 Contiguous regions)</B>
+        </LI>
+        <LI>
+          <BR>
+           This is OK until the cells are overwritten with something else. The dictionary maintains a hash table, and the table must be updated in order to de-allocate words without corruption.&nbsp;
+        </LI>
+        <LI>
+          <B>data space read/write with incorrect alignment (3.3.3.1 Address alignment)</B>
+        </LI>
+        <LI>
+          <BR>
+           Target processor dependent. Consequences include: none (Intel), address error exception (68K).&nbsp;
+        </LI>
+        <LI>
+          <B>data-space pointer not properly aligned (6.1.0150 ,, 6.1.0860 C,)</B>
+        </LI>
+        <LI>
+          <BR>
+           See above on data space read/write alignment&nbsp;
+        </LI>
+        <LI>
+          <B>less than u+2 stack items (6.2.2030 PICK, 6.2.2150 ROLL)</B>
+        </LI>
+        <LI>
+          <BR>
+           Ficl detects a stack underflow and reports it, executing <TT>ABORT,</TT> as long as FICL_ROBUST is two or larger.&nbsp;
+        </LI>
+        <LI>
+          <B>loop-control parameters not available ( 6.1.0140 +LOOP, 6.1.1680 I, 6.1.1730 J, 6.1.1760 LEAVE, 6.1.1800 LOOP, 6.1.2380 UNLOOP)</B>
+        </LI>
+        <LI>
+          <BR>
+           Loop initiation words are responsible for checking the stack and guaranteeing that the control parameters are pushed. Any underflows will be detected early if FICL_ROBUST is set to two or
+          greater. Note however that Ficl only checks for return stack underflows at the end of each line of text.&nbsp;
+        </LI>
+        <LI>
+          <B>most recent definition does not have a name (6.1.1710 IMMEDIATE)</B>
+        </LI>
+        <LI>
+          <BR>
+           No problem.&nbsp;
+        </LI>
+        <LI>
+          <B>name not defined by 6.2.2405 VALUE used by 6.2.2295 TO</B>
+        </LI>
+        <LI>
+          <BR>
+           Ficl's version of <TT>TO</TT> works correctly with <TT>VALUE</TT>s, <TT>CONSTANT</TT>s and <TT>VARIABLE</TT>s.&nbsp;
+        </LI>
+        <LI>
+          <B>name not found (6.1.0070 ', 6.1.2033 POSTPONE, 6.1.2510 ['], 6.2.2530 [COMPILE])</B>
+        </LI>
+        <LI>
+          <BR>
+           Ficl prints an error message and does <TT>ABORT</TT>
+        </LI>
+        <LI>
+          <B>parameters are not of the same type (6.1.1240 DO, 6.2.0620 ?DO, 6.2.2440 WITHIN)</B>
+        </LI>
+        <LI>
+          <BR>
+           No check. Results vary depending on the specific problem.&nbsp;
+        </LI>
+        <LI>
+          <B>6.1.2033 POSTPONE or 6.2.2530 [COMPILE] applied to 6.2.2295 TO</B>
+        </LI>
+        <LI>
+          <BR>
+           The word is postponed correctly.&nbsp;
+        </LI>
+        <LI>
+          <B>string longer than a counted string returned by 6.1.2450 WORD</B>
+        </LI>
+        <LI>
+          <BR>
+           Ficl stores the first FICL_STRING_MAX-1 chars in the destination buffer. (The extra character is the trailing space required by the standard. Yuck.)&nbsp;
+        </LI>
+        <LI>
+          <B>u greater than or equal to the number of bits in a cell (6.1.1805 LSHIFT, 6.1.2162 RSHIFT)</B>
+        </LI>
+        <LI>
+          <BR>
+           Depends on target process or and C runtime library implementations of the &lt;&lt; and &gt;&gt; operators on unsigned values. For I386, the processor appears to shift modulo the number of
+          bits in a cell.&nbsp;
+        </LI>
+        <LI>
+          <B>word not defined via 6.1.1000 CREATE (6.1.0550 &gt;BODY, 6.1.1250 DOES&gt;)</B>
+        </LI>
+        <LI>
+          <BR>
+           <B>words improperly used outside 6.1.0490 &lt;# and 6.1.0040 #&gt; (6.1.0030 #, 6.1.0050 #S, 6.1.1670 HOLD, 6.1.2210 SIGN)</B><BR>
+           Don't. <TT>CREATE</TT> reserves a field in words it builds for <TT>DOES&gt;</TT>to fill in. If you use <TT>DOES&gt;</TT> on a word not made by <TT>CREATE</TT>, it will overwrite the first
+          cell of its parameter area. That's probably not what you want. Likewise, pictured numeric words assume that there is a string under construction in the VM's scratch buffer. If that's not
+          the case, results may be unpleasant.
+        </LI>
+      </UL>
+      <H3>
+        Locals Implementation-defined options
+      </H3>
+      <UL>
+        <LI>
+          <B>maximum number of locals in a definition (13.3.3 Processing locals, 13.6.2.1795 LOCALS|)</B>
+        </LI>
+        <LI>
+          <BR>
+           Default is 16. Change by redefining FICL_MAX_LOCALS, defined in sysdep.h
+        </LI>
+      </UL>
+      <H3>
+        Locals Ambiguous conditions
+      </H3>
+      <UL>
+        <LI>
+          <B>executing a named local while in interpretation state (13.6.1.0086 (LOCAL))</B>
+        </LI>
+        <LI>
+          <BR>
+           Locals can be found in interpretation state while in the context of a definition under construction. Under these circumstances, locals behave correctly. Locals are not visible at all
+          outside the scope of a definition.&nbsp;
+        </LI>
+        <LI>
+          <B>name not defined by VALUE or LOCAL (13.6.1.2295 TO)</B>
+        </LI>
+        <LI>
+          <BR>
+           See the CORE ambiguous conditions, above (no change)
+        </LI>
+      </UL>
+      <H3>
+        Programming Tools Implementation-defined options
+      </H3>
+      <UL>
+        <LI>
+          <B>source and format of display by 15.6.1.2194 SEE</B>
+        </LI>
+        <LI>
+          <BR>
+           SEE de-compiles definitions from the dictionary. Because Ficl words are threaded by their header addresses, it is very straightforward to print the name and other characteristics of words
+          in a definition. Primitives are so noted. Colon definitions are decompiled, but branch target labels are not reconstructed. Literals and string literals are so noted, and their contents
+          displayed.
+        </LI>
+      </UL>
+      <H3>
+        Search Order Implementation-defined options
+      </H3>
+      <UL>
+        <LI>
+          <B>maximum number of word lists in the search order (16.3.3 Finding definition names, 16.6.1.2197 SET-ORDER)</B>&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           Defaults to 16. Can be changed by redefining FICL_DEFAULT_VOCS, declared in sysdep.h&nbsp;
+        </LI>
+        <LI>
+          <B>minimum search order (16.6.1.2197 SET-ORDER, 16.6.2.1965 ONLY)</B>&nbsp;
+        </LI>
+        <LI>
+          <BR>
+           Equivalent to <TT>FORTH-WORDLIST 1 SET-ORDER</TT>
+        </LI>
+      </UL>
+      <H3>
+        Search Order Ambiguous conditions
+      </H3>
+      <UL>
+        <LI>
+          <B>changing the compilation word list (16.3.3 Finding definition names)</B>
+        </LI>
+        <LI>
+          <BR>
+           Ficl stores a link to the current definition independently of the compile wordlist while it is being defined, and links it into the compile wordlist only after the definition completes
+          successfully. Changing the compile wordlist mid-definition will cause the definition to link into the <I>new</I> compile wordlist.&nbsp;
+        </LI>
+        <LI>
+          <B>search order empty (16.6.2.2037 PREVIOUS)</B>
+        </LI>
+        <LI>
+          <BR>
+           Ficl prints an error message if the search order underflows, and resets the order to its default state.&nbsp;
+        </LI>
+        <LI>
+          <B>too many word lists in search order (16.6.2.0715 ALSO)</B>
+        </LI>
+        <LI>
+          <BR>
+           Ficl prints an error message if the search order overflows, and resets the order to its default state.
+        </LI>
+      </UL>
+    </DIV>
+  </BODY>
+</HTML>
 
-<br>Ficl prints an error message if the search order overflows, and resets
-the order to its default state.</ul>
-</td>
-</tr>
-</table>
-
-</body>
-</html>
--- a/doc/ficl_debug.html
+++ b/doc/ficl_debug.html
@@ -1,7 +1,6 @@
 <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
 <html>
 <head>
-   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <meta name="Author" content="john sadler">
    <title>Ficl Debugger</title>
 </head>
--- /dev/null
+++ b/doc/ficl_guts.html
@@ -1,0 +1,69 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head>
+   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+   <meta name="Author" content="john sadler">
+   <meta name="Description" content="the coolest embedded scripting language ever">
+   <title>Ficl - Internals</title>
+</head>
+<body>
+<link REL="SHORTCUT ICON" href="ficl.ico">
+<h1><b>Ficl Internal Structures</b></h1>
+
+<script language="javascript" src="ficlheader.js"></script>
+
+<h2>Contents</h2>
+
+<h2>Major Data Structures</h2>
+<p>
+A running memory image of Ficl consists of one or more FICL_SYSTEMs, 
+each of which owns exactly one dictionary (FICL_DICT), 
+and one or more virtual machines (FICL_VM). Each VM owns two stacks
+(FICL_STACK) - one for parameters (the parameter stack) 
+and one for return addresses (the return stack). 
+Ficl is a permissive, untyped language by nature, 
+so its fundamental unit of storage is a CELL: a chunk of memory
+large enough to hold an address or a scalar type.
+</p>
+<h3>FICL_SYSTEM</h3>
+The system structure associates one or more virtual machines with a dictionary. All FICL_SYSTEMS
+include a link pointer that is used to keep track of every allocated system so that memory
+can be freed by ficlTermSystem. Each system contains a list of virtual machines associated with
+it. Each system has at least one virtual machine. In a typical implementation, there is one virtual
+machine per native OS thread, and there may be several VMs sharing a single FICL_SYSTEM, or one
+FICL_SYSTEM per VM if the implementation needs to support multiple user sessions in a robust way.
+
+A FICL_SYSTEM also includes a special dictionary for local variable support (if enabled 
+by FICL_WANT_LOCALS) and another for environment variable support. Environment variables 
+describe the configuration of the system in conformance with American National Standard Forth 
+(ANS Forth).
+<h3>FICL_DICT</h3>
+A dictionary manages a fixed-size block of contiguous memory. It serves two roles: to keep track 
+of allocated memory, and to collect symbol tables called wordlists. Each dictionary contains at
+least one wordlist. The dictionary organized memory (perhaps this is too kind) as an array of
+CELLs that grows from low memory to high memory within fixed limits determined by the 
+FICL_DEFAULT_DICT parameter in sysdep.h. 
+
+A wordlist is the controlling structure of a Ficl symbol table. Each wordlist is a hash table 
+containing pointers to FICL_WORDs. Each FICL_WORD associates a pointer to code with one or more
+CELLs of the dictionay. Each word usually has a name as well, but this is not required. It is
+possible to create anonymous words using :NONAME.
+
+Each word's code pointer determines that word's runtime behavior, and by implication the purpose
+of its payload data. Some words interpret their payload as a list of Ficl words, and execute them.
+This is how new behaviors of the language are defined. Other words view their payload field as
+a location in which one or more CELLs can be stored (VARIABLEs, for example). At runtime, such
+words push the address of their payload area onto the parameter stack.
+<h3>FICL_VM</h3>
+The virtual machine collects state related to execution of Ficl words. Each VM includes
+registers used by the inner interpreter, some state variables (AKA user variables) such as
+the current numeric base, and a jmpbuf.
+A VM has a pointer to the FICL_SYSTEM of which it is a part. It also has a pointer to an incoming 
+text string that it is interpreting. There are VM methods that excute a word given its address
+(xt), and ones that interpret a text string. 
+<h3>FICL_STACK</h3>
+Each VM owns a parameter stack, a return stack, and if float support is enabled, a float parameter
+stack. Parameters, return addresses, and floats are all CELL sized, and values may be
+moved back and forth among stacks using various Ficl words for that purpose.
+</BODY>
+</HTML>
--- /dev/null
+++ b/doc/ficl_parse.html
@@ -1,0 +1,197 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head>
+   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+   <meta name="Author" content="john sadler">
+   <meta name="Description" content="the coolest embedded scripting language ever">
+   <title>Ficl Parse Steps</title>
+</head>
+<body>
+<link REL="SHORTCUT ICON" href="ficl.ico">
+<table BORDER=0 CELLSPACING=3 COLS=1 WIDTH="675" ><tr><td>
+<h1>Ficl Parse Steps</h1>
+<script language="javascript" src="ficlheader.js"></script>
+
+<h2>Overview</h2>
+<p>
+Ficl 2.05 and later includes an extensible parser chain. Ficl feeds every incoming token
+(chunk of text with no internal whitespace) to each step in the parse chain in turn. The 
+first parse step that successfully matches the token applies semantics to it and returns
+a TRUE flag, ending the sequence. If all parse steps fire without a match, ficl prints
+an error message and resets the virtual machine. Parse steps can be written in precompiled
+code, or in ficl itself, and can be appended to the chain at run-time if you like.
+</p>
+<p>
+More detail:
+</p>
+<ul>
+<li>
+If compiling and local variable support is enabled, attempt to find the token in the local 
+variable dictionary. If found, execute the token's compilation semantics and return
+</li>
+<li>
+Attempt to find the token in the system dictionary. If found, execute the token's semantics
+(may be different when compiling than when interpreting) and return
+</li>
+<li>
+If prefix support is enabled (Compile-time constant FICL_WANT_PREFIX in sysdep.h is non-zero),
+attempt to match the beginning of the token to the list of known prefixes. If there's a match,
+execute the associated prefix method.
+</li>
+<li>
+Attempt to convert the token to a number in the present <code>BASE</code>. If successful, push the 
+value onto the stack if interpreting, compile it if compiling. Return
+</li>
+<li>
+All previous parse steps failed to recognize the token. Print "<token> not found" and abort
+</li>
+</ul>
+You can add steps to the parse chain, and you can add prefixes.
+<h2>Adding Parse Steps</h2>
+You can add a parse step in two ways. The first is to write a ficl word that
+has the correct stack signature for a parse step:
+<pre>
+my-parse-step   ( c-addr u -- ??? flag )
+</pre>
+Where <code>c-addr u</code> are the address and length of the incoming token,
+and <code>flag</code> is <code>true</code> if the parse step recognizes the token
+and <code>false</code> otherwise. 
+<br>
+Install the parse step using <code>add-parse-step</code>.
+A trivial example:
+<pre>
+: ?silly   ( c-addr u -- flag )
+   ." Oh no! Not another  " type cr  true ;
+' ?silly add-parse-step
+parse-order
+</pre>
+<p>
+The other way to add a parse step is by writing it in C, and inserting it into the 
+parse chain with:
+</p>
+<pre>
+void ficlAddPrecompiledParseStep(FICL_SYSTEM *pSys, char *name, FICL_PARSE_STEP pStep);
+</pre>
+Where <code>name</code> is the display name of the parse step in the parse chain (as revealed 
+by <code>parse-order</code>). Parameter pStep is a pointer to the code for the parse step itself,
+and must match the following declaration:
+<pre>
+typedef int (*FICL_PARSE_STEP)(FICL_VM *pVM, STRINGINFO si);
+</pre>
+<p>
+Upon entry to the parse step, <code>si</code> points to the incoming token. The parse step
+must return <code>FICL_TRUE</code> if it succeeds in matching the token, and 
+<code>FICL_TRUE</code> otherwise. If it succeeds in matching a token, the parse step
+applies semantics to it before returning. See <code>ficlParseNumber()</code> in words.c for
+an example.
+</p>
+
+<h2>Adding Prefixes</h2>
+<p>
+What's a prefix, anyway? A prefix (contributed by Larry Hastings) is a token that's
+recognized as the beginning of another token. Its presence modifies the semantics of
+the rest of the token. An example is <code>0x</code>, which causes digits following
+it to be converted to hex regardless of the current value of <code>BASE</code>. 
+</p><p>
+Caveat: Prefixes are matched in sequence, so the more of them there are, 
+the slower the interpreter gets. On the other hand, because the prefix parse step occurs
+immediately after the dictionary lookup step, if you have a prefix for a particular purpose,
+using it may save time since it stops the parse process.
+</p><p>
+Each prefix is a ficl word stored in a special wordlist called <code>&lt;prefixes&gt;</code>. When the
+prefix parse step (<code>?prefix</code> AKA ficlParsePrefix()) fires, it searches each word
+in <code>&lt;prefixes&gt;</code> in turn, comparing it with the initial characters of the incoming
+token. If a prefix matches, the parse step returns the remainder of the token to the input stream 
+and executes the code associated with the prefix. This code can be anything you like, but it would
+typically do something with the remainder of the token. If the prefix code does not consume the
+rest of the token, it will go through the parse process again (which may be what you want).
+</p><p>
+Prefixes are defined in prefix.c and in softwords/prefix.fr. The easiest way to add a new prefix is
+to insert it into prefix.fr and rebuild the system. You can also add prefixes interactively
+by bracketing prefix definitions as follows (see prefix,fr):
+</p>
+<pre>
+start-prefixes  ( defined in prefix.fr )
+\ make dot-paren a prefix (create an alias for it in the prefixes list)
+: .(  .( ;
+: 0b  2 __tempbase ; immediate
+end-prefixes
+</pre>
+<p>
+The precompiled word <code>__tempbase</code> is a helper for prefixes that specify a
+temporary value of <code>BASE</code>.
+</p><p>
+Constant <code>FICL_EXTENDED_PREFIX</code> controls the inclusion of a bunch of additional
+prefix definitions. This is turned off in the default build since several of these prefixes
+alter standard behavior, but you might like them.
+</p>
+
+<h2>Notes</h2>
+<p>
+Prefixes and parser extensions are non-standard, although with the exception of prefix support,
+ficl's default parse order follows the standard. Inserting parse steps in some other order
+will almost certainly break standard behavior.
+</p>
+<p>
+The number of parse steps that can be added to the system is limited by the value of 
+<code>FICL_MAX_PARSE_STEPS</code> (defined in sysdep.h unless you define it first), which defaults
+to 8. More parse steps means slower average interpret and compile performance,
+so be sparing. Same applies to the number of prefixes defined for the system, since each one
+has to be matched in turn before it can be proven that no prefix matches. On the other hand,
+if prefixes are defined, use them when possible: since they are matched early in the parse order, 
+a prefix match short circuits the parse process, saving time relative to 
+(for example) using a number builder parse step at the end of the parse chain.
+</p>
+<p>
+Compile time constant <code>FICL_EXTENDED_PREFIX</code> enables several more prefix 
+definitions in prefix.c and prefix.fr. Please note that this will slow average compile and
+interpret speed in most cases.
+</p>
+<h2>Parser Glossary</h2>
+<dl>
+<dt><b><code>parse-order  ( -- )</code></b></dt>
+<dd>
+Prints the list of parse steps in the order in which they are evaluated. 
+Each step is the name of a ficl word with the following signature:
+<pre>
+parse-step   ( c-addr u -- ??? flag )
+</pre>
+A parse step consumes a counted string (the incoming token) from the stack,
+and exits leaving a flag on top of the stack (it may also leave other parameters as side effects).
+The flag is true if the parse step succeeded at recognizing the token, false otherwise.
+</dd>
+<dt><b><code>add-parse-step  ( xt -- )</code></b></dt>
+<dd>
+Appends a parse step to the parse chain. XT is the adress (execution token) of a ficl
+word to use as the parse step. The word must have the following signature:
+<pre>
+parse-step   ( c-addr u -- ??? flag )
+</pre>
+A parse step consumes a counted string (the incoming token) from the stack,
+and exits leaving a flag on top of the stack (it may also leave other parameters as side effects).
+The flag is true if the parse step succeeded at recognizing the token, false otherwise.
+</dd>
+<dt><b><code>show-prefixes  ( -- )</code></b></dt>
+<dd>
+Defined in <code>softwords/prefix.fr</code>. 
+Prints the list of all prefixes. Each prefix is a ficl word that is executed if its name
+is found at the beginning of a token. See <code>softwords/prefix.fr</code> and <code>prefix.c</code> for examples.
+</dd>
+<dt><b><code>start-prefixes  ( -- )</code></b></dt>
+<dd>
+Defined in <code>softwords/prefix.fr</code>. 
+Declares the beginning of one or more prefix definitions (it just switches the compile wordlist
+to <code>&lt;prefixes&gt;</code>
+</dd>
+<dt><b><code>end-prefixes  ( -- )</code></b></dt>
+<dd>
+Defined in <code>softwords/prefix.fr</code>. 
+Restores the compilation wordlist that was in effect before the last invocation of 
+<code>start-prefixes</code>. Note: the prior wordlist ID is stored in a Ficl variable, so 
+attempts to nest <code>start-prefixes end-prefixes</code> blocks wil result in mildly silly
+side effects.
+</dd>
+</dl>
+</td></tr></table>
+</body>
+</html>
\ No newline at end of file
--- a/doc/ficl_rel.html
+++ b/doc/ficl_rel.html
@@ -9,7 +9,8 @@
 <body>
 
 <h1>
-<b>Ficl Release Notes</b></h1>
+<b>Ficl Release Notes</b>
+</h1>
 
 
 <script language="javascript" src="ficlheader.js"></script>
@@ -19,12 +20,63 @@
 <table BORDER=0 CELLPADDING=3 COLS=1 WIDTH="675" >
 <tr>
 <td>
-<h2><a NAME="whatsnew">Version 3.00a</a></h2>
+<h2><a NAME="whatsnew">Version 3.01</a></h2>
+<ul>
+<li>
+Major contribs by Larry Hastings (larry@hastings.org):
+<ul>
+<li>
+FILE wordset (fileaccess.c)
+</li>
+<li>
+ficlEvaluate wrapper for ficlExec
+</li>
+<li>
+ficlInitSystemEx makes it possible to bind selectable properties to VMs at create time
+</li>
+<li>
+Python version of softcore builder ficl/softwords/softcore.py
+</li>
+</ul>
+</li>
+<li>
+<a href="http://www.swig.org">SWIG</a> wrapper for Ficl contributed by <a href="mailto:xiaoye@users.sf.net">Ye Xiaofeng</a>.
+SWIG is a software development tool that connects programs written in C, C++, and Objective-C with a variety of high-level programming languages - now including Ficl. SWIG writes the wrapper code so you don't have to.
+</li>
+<li>
+Environment contains ficl-version (double)
+</li>
+<li>
+?number handles trailing decimal point per DOUBLE wordset spec
+</li>
+<li>
+Fixed broken .env (thanks to Leonid Rosin for spotting this goof)
+</li>
+<li>
+Fixed broken floating point words that depended on evaluation order of stack pops.
+</li>
+<li>
+env-constant
+</li>
+<li>
+env-2constant
+</li>
+<li>
+dictHashSummary is now commented out unless FICL_WANT_FLOAT (thanks to Leonid Rosin again)
+</li>
+<li>
+Thanks to David McNab for pointing out that .( should be IMMEDIATE. Now it is.
+</li>
+</ul>
 
+
+<h2>Version 3.00a</h2>
+
 <ul>
 <li>
 Fixed broken oo.fr by commenting out vcall stuff using FICL_WANT_VCALL. Vcall is still broken.
 </li>
+</ul>
 
 <h2>Version 3.00</h2>
 
--- /dev/null
+++ b/doc/index.html
@@ -1,0 +1,116 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML>
+  <HEAD>
+    <META name="Author" content="john sadler">
+    <META name="Description" content="Ficl - embedded scripting with object oriented programming">
+    <META name="Keywords" content="scripting prototyping tcl OOP Forth interpreter C">
+<STYLE>
+	H1 {font: Arial; color: navy}       
+	H2 {font: Arial; color: navy}
+	LI {font: Arial}       
+</STYLE>
+    <LINK rel="SHORTCUT ICON" href="ficl.ico">
+    <TITLE>
+      Ficl - Embedded Scripting - Index
+    </TITLE>
+  </HEAD>
+  <BODY>
+    <H1>
+      <B>Ficl Documentation</B>
+    </H1>
+<SCRIPT language="javascript" src="ficlheader.js" type="text/javascript">
+</SCRIPT>
+    <TABLE summary="table of contents" border="0" cellspacing="3" cols="2" width="675">
+      <TR>
+        <TD width="500">
+          <H2>
+            Contents
+          </H2>
+          <UL>
+            <LI>
+              <A href="ficl_rel.html">Release notes</A>
+            </LI>
+            <LI>
+              <A href="ficl.html#whatis">What is ficl?</A>
+            </LI>
+            <LI>
+              <A href="http://sourceforge.net/projects/ficl">Ficl project page on Sourceforge</A>
+            </LI>
+            <LI>
+              <A href="http://sourceforge.net/project/showfiles.php?group_id=24441">Download</A>
+            </LI>
+            <LI>
+              <A href="ficl.html#links">Tutorials and References</A>
+            </LI>
+            <LI>
+              <A href="ficl.html#includesficl">Ficl Inside!</A>
+            </LI>
+            <LI>
+              <A href="ficl.html#lawyerbait">Disclaimer and License</A>
+            </LI>
+            <LI>
+              <A href="ficl.html#features">Ficl features</A>
+            </LI>
+            <LI>
+              <A href="ficl.html#porting">Porting</A>
+            </LI>
+            <LI>
+              <A href="ficl.html#api">Application Programming Interface</A>
+            </LI>
+            <LI>
+              <A href="ficl.html#manifest">Distribution source files</A>
+            </LI>
+            <LI>
+              <A href="ficl_loc.html">Local variables</A>
+            </LI>
+            <LI>
+              <A href="ficl_oop.html">Object Oriented Programming in ficl</A>
+            </LI>
+            <LI>
+              <A href="ficl_debug.html">Ficl Debugger</A>
+            </LI>
+            <LI>
+              <A href="ficl.html#extras">Ficl extras</A> 
+              <UL>
+                <LI>
+                  <A href="ficl.html#exnumber">Number syntax</A>
+                </LI>
+                <LI>
+                  <A href="ficl_parse.html">Parser extensions and prefix support</A>
+                </LI>
+                <LI>
+                  <A href="ficl.html#exsearch">Search order words</A>
+                </LI>
+                <LI>
+                  <A href="ficl.html#exuser">User variables</A>
+                </LI>
+                <LI>
+                  <A href="ficl.html#exmisc">Miscellaneous useful words</A>
+                </LI>
+                <LI>
+                  <A href="ficl.html#exficlwin">FiclWin words</A>
+                </LI>
+              </UL>
+            </LI>
+            <LI>
+              <A href="ficl.html#ansinfo">ANS required information</A>
+            </LI>
+          </UL>
+        </TD>
+        <TD width="175">
+          <A href="http://nav.webring.yahoo.com/hub?ring=forth&mp;list"><IMG src="http://www.iidbs.com/images/4ring.gif" width="155" height="140" border="0" alt="Forth Webring Logo"></A> 
+          <CENTER>
+            <FONT size="3"><BR>
+             <A href="http://www.webring.org/cgi-bin/webring?ring=forth;id=47;prev5">Previous 5 Sites</A><BR>
+             <A href="http://www.webring.org/cgi-bin/webring?ring=forth;id=47;prev">Previous</A><BR>
+             <A href="http://www.webring.org/cgi-bin/webring?ring=forth;id=47;next">Next</A><BR>
+             <A href="http://www.webring.org/cgi-bin/webring?ring=forth;id=47;next5">Next 5 Sites</A><BR>
+             <A href="http://www.webring.org/cgi-bin/webring?ring=forth;random">Random Site</A><BR>
+             <A href="http://www.webring.org/cgi-bin/webring?ring=forth;list">List Sites</A></FONT>
+          </CENTER>
+        </TD>
+      </TR>
+    </TABLE>
+  </BODY>
+</HTML>
+