Talk About Network



Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Forth > Re: The Promise...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 66 of 495 Topic 3957 of 4053
Post > Topic >>

Re: The Promise of Forth

by stephenXXX@[EMAIL PROTECTED] (Stephen Pelc) Mar 24, 2008 at 05:49 PM

On Sun, 23 Mar 2008 21:31:37 -0400, "Robert Miller"
<rsmiller@[EMAIL PROTECTED]
> wrote:

>Unfortunately, the Forth I'm using (SwiftX for the TI msp430) apparently 
>doesn't include the optional ANSI locals word set. I can envision a
variant 
>using VARIABLE declarations for  x, y, xx, and xy but that would
permanantly 
>allocate scarce (in my application ) RAM.

A few years ago we used our PowerView embedded GUI as a test case for
"delocalling" some old code. What we found was that you use locals
when:
a) you have unstructured data
b) you intrinsically have more data items than fit comfortably
on the stack.

In a graphics environment, you do not have unstructured data, you
have a collection of points. Especially if you are building a GUI
you have a collection of horizontal and vertical lines. For most
displays, it is worth optimising the line draw routine for these
two cases.

: h-line        \ x y len --
: v-line        \ x y len --

: rect          \ x y w h --
\ *G Draw a rectangle at *\i{x,y} with width and height *\i{w,h}.
  2>r					\ -- x y  ; R: -- w h
\ 1st vertical: x y h v-line
  2dup r@[EMAIL PROTECTED]
 v-line
\ 2nd vertical: x+w y h v-line
  2dup swap 2r@[EMAIL PROTECTED]
 -- x y y x w h ; R: -- w h
  -rot + -rot v-line
\ horizontal: x y+h w h-line
  2dup r> + r@[EMAIL PROTECTED]
 h-line			\ -- x y ; R: -- w
\ horizontal: x y w h-line
  r> h-line
;

The higher level code can now deal with everything in terms of
rectangle or line structures passed by address. You can use
a word to unpack the structure.
: rect>coords  \ rect -- x y w h

For NCC compilers, the overhead of unpacking the structure is
balanced by the reduction in stack shuffling. Phrases of the
form:
  dup lit + @[EMAIL PROTECTED]
 generate one instruction, just as a stack fetch or
save will.

Stephen


-- 
Stephen Pelc, stephenXXX@[EMAIL PROTECTED]
 Engineering Ltd - More Real, Less Time
133 Hill Lane, Southampton SO15 5AF, England
tel: +44 (0)23 8063 1441, fax: +44 (0)23 8033 9691
web: http://www.mpeforth.com
- free VFX Forth downloads




 495 Posts in Topic:
The Promise of Forth
Jonah Thomas <jethomas  2008-03-22 21:56:18 
Re: The Promise of Forth
Axel Harvey <xlrv@[EMA  2008-03-22 21:57:00 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-23 06:09:42 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-23 12:50:04 
Re: The Promise of Forth
Albert van der Horst <  2008-03-24 02:02:31 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-03-31 22:17:42 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-01 10:32:12 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-01 12:45:29 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-02 11:10:23 
Re: The Promise of Forth
Albert van der Horst <  2008-04-01 09:05:40 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-01 12:59:36 
Re: The Promise of Forth
Guy Macon <http://www.  2008-03-23 22:46:35 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-03-31 22:29:25 
Re: The Promise of Forth
Albert van der Horst <  2008-04-01 09:10:55 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 18:05:14 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-24 02:36:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 19:39:13 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-03-27 12:07:48 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-04-24 09:50:51 
Re: The Promise of Forth
"Paul E. Bennett&quo  2008-03-23 11:20:00 
Re: The Promise of Forth
JK <jk.usenet@[EMAIL P  2008-03-25 14:11:45 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-25 18:54:11 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 14:53:25 
Re: The Promise of Forth
JK <jk.usenet@[EMAIL P  2008-03-27 09:11:30 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-04-24 09:53:56 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 08:23:22 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-23 12:58:12 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 12:58:39 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 14:16:35 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 00:17:17 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-24 22:28:53 
Re: The Promise of Forth
"Jenny Brien" &  2008-03-25 20:19:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 14:28:01 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 15:41:21 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 16:32:27 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 17:40:46 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 11:23:46 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-25 11:04:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 20:40:22 
Re: The Promise of Forth
stephen@[EMAIL PROTECTED]  2008-03-25 04:44:48 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-25 17:12:48 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-03-26 06:13:36 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-26 07:00:14 
Re: The Promise of Forth
astrobe <fdubois76@[EM  2008-03-27 05:32:10 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-27 15:35:21 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-28 15:41:20 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-28 17:41:22 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-28 17:36:37 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-03-28 16:40:35 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-27 11:14:40 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-03-27 12:12:34 
Re: The Promise of Forth
astrobe <fdubois76@[EM  2008-03-28 05:28:12 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 11:30:35 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:07:30 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 15:15:23 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:05:20 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 18:10:30 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 08:16:09 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 10:11:02 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 12:16:54 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-23 16:45:15 
Re: The Promise of Forth
kenney@[EMAIL PROTECTED]   2008-03-24 08:32:26 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-03-24 17:22:51 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-23 12:09:11 
Re: The Promise of Forth
"Robert Miller"  2008-03-23 21:31:37 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-03-24 17:49:46 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 02:41:12 
Re: The Promise of Forth
Frank Buss <fb@[EMAIL   2008-03-25 05:00:58 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 20:09:00 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 04:03:15 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-25 06:49:08 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 22:44:53 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 11:37:14 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 22:51:42 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-25 10:51:49 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-03-25 10:55:38 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-03-25 19:39:22 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 23:06:26 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-03-27 18:36:53 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 20:54:58 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 08:57:48 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 09:32:08 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 17:43:33 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-23 16:35:44 
Re: The Promise of Forth
John Passaniti <put-my  2008-03-23 18:37:55 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 23:18:44 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-23 23:50:24 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-24 08:06:31 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 08:24:37 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 10:38:40 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 08:52:04 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 09:32:58 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-24 11:24:39 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-24 14:55:12 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-25 02:34:19 
Re: The Promise of Forth
Alex McDonald <blog@[E  2008-03-25 07:20:19 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 09:20:17 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 16:08:24 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 17:34:51 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 19:55:56 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 20:00:19 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 22:29:30 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 10:35:29 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:16:23 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 22:25:31 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 16:48:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-05 01:08:15 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 10:39:14 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 11:50:08 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 07:54:47 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-06 23:41:57 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-06 23:47:56 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 08:25:40 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-07 09:45:40 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-07 09:59:41 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-07 21:18:56 
Re: The Promise of Forth
kenney@[EMAIL PROTECTED]   2008-04-08 04:52:36 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-08 18:59:06 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-04-09 11:18:52 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-09 17:45:09 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-12 21:15:16 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-08 07:03:01 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-09 08:57:51 
Re: The Promise of Forth
Tarkin <Tarkin000@[EMA  2008-04-09 22:38:00 
Re: The Promise of Forth
Brad Eckert <nospaambr  2008-03-25 20:30:02 
Re: The Promise of Forth (Doty)
William James <w_a_x_m  2008-03-26 03:25:01 
Re: The Promise of Forth (Doty)
William James <w_a_x_m  2008-03-26 03:34:41 
Re: The Promise of Forth (Doty)
Bruce McFarling <agila  2008-03-26 06:40:48 
Re: The Promise of Forth (doty)
Bruce McFarling <agila  2008-03-26 07:06:33 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 11:46:10 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-01 14:00:53 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:20:32 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 15:41:32 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-05 23:40:17 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 19:09:35 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 15:21:25 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-04-04 04:06:12 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-04 08:55:34 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-04-24 10:10:29 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 18:39:26 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-23 18:56:02 
Re: The Promise of Forth
JK <jk.usenet@[EMAIL P  2008-03-27 10:28:45 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-28 09:57:12 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-28 17:40:51 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-30 01:54:05 
Re: The Promise of Forth
John Passaniti <nntp@[  2008-03-30 06:20:08 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-30 09:58:40 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 20:05:36 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-23 22:39:40 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-23 22:07:21 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 18:38:03 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-01 22:37:03 
Re: The Promise of Forth
John Passaniti <put-my  2008-03-24 01:00:11 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 10:46:31 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 18:02:13 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 20:50:19 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 21:25:29 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-23 23:10:02 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-24 11:56:44 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 10:24:48 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 11:44:39 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 12:44:24 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 14:37:25 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 14:12:06 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 17:34:10 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 01:53:13 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-25 00:02:28 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 11:50:15 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 17:33:45 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 19:42:54 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-03-25 12:16:55 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 15:17:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 09:48:37 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-25 10:02:13 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 14:29:41 
Re: The Promise of Forth
m-coughlin <m-coughlin  2008-03-25 23:32:55 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-03-25 05:46:58 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-27 05:32:15 
Re: The Promise of Forth
Albert van der Horst <  2008-03-28 09:07:33 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-28 08:12:44 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-28 10:00:40 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-24 17:31:47 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-30 00:10:43 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 21:46:01 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 07:53:42 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 09:03:40 
Re: The Promise of Forth
"Robert Miller"  2008-03-24 11:40:00 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 13:19:30 
Re: The Promise of Forth
"Robert Miller"  2008-03-24 22:08:54 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 21:24:16 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 19:47:41 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:42:12 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 15:28:46 
Re: The Promise of Forth
"Mark W. Humphries&q  2008-04-04 09:51:51 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 11:05:49 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 11:12:15 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 20:07:19 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 04:14:38 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 04:40:16 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-05 14:10:31 
Re: The Promise of Forth
stephen@[EMAIL PROTECTED]  2008-04-05 14:50:53 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 07:56:43 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 08:01:51 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-04-05 10:16:34 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 10:42:39 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 10:51:57 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-13 19:42:56 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-14 11:13:45 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-01 16:42:58 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-02 09:15:10 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 07:13:40 
Re: The Promise of Forth
Albert van der Horst <  2008-05-02 16:11:20 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 10:55:22 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-02 21:39:17 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 16:14:01 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 16:34:35 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 02:07:40 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 21:03:33 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 09:03:49 
Re: The Promise of Forth
Bruce McFarling <agila  2008-05-07 15:27:31 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 02:04:24 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 21:11:32 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 09:49:42 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 08:32:32 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-05-03 09:01:34 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 11:06:21 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-05-03 17:10:06 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 18:23:14 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 09:49:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 18:25:24 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 12:48:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 21:49:17 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 12:01:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 18:57:53 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 13:51:22 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 21:56:47 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 17:26:20 
Re: The Promise of Forth
Bruce McFarling <agila  2008-05-05 10:25:55 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-05 17:45:58 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 11:08:48 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 14:10:10 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 14:59:23 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 22:26:05 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 06:26:07 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 22:45:58 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 22:58:04 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 11:19:27 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:37:37 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 23:08:12 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 19:57:42 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 21:18:46 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 09:15:24 
Re: The Promise of Forth
Doug Hoffman <no.spam&  2008-03-24 10:53:38 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 09:57:45 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 09:39:24 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-24 14:38:07 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 11:16:10 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 13:08:44 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 14:47:02 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 12:54:32 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-24 19:56:20 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 13:04:18 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 14:51:21 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 13:05:04 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 14:58:24 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 15:46:16 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 13:54:02 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 18:19:57 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 00:43:34 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 20:27:40 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 07:30:17 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 18:28:41 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-25 20:40:53 
Re: The Promise of Forth
"Robert Miller"  2008-03-25 23:20:11 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 06:56:49 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 10:44:41 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 20:18:16 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-25 20:52:17 
Re: The Promise of Forth
Stan Katz <stanmkatz@[  2008-03-26 15:01:03 
Re: The Promise of Forth
John Passaniti <nntp@[  2008-03-26 16:32:07 
Re: The Promise of Forth
Stan Katz <stanmkatz@[  2008-04-01 18:59:28 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-26 16:28:41 
Re: The Promise of Forth
Stan Katz <stanmkatz@[  2008-04-01 19:24:17 
Re: The Promise of Forth
"Mark W. Humphries&q  2008-03-26 20:31:53 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 22:59:25 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-04-01 15:37:48 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:29:24 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-26 21:30:32 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-26 21:42:29 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-27 13:36:42 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 23:08:05 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-02 21:50:17 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 18:42:28 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-06 21:58:21 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 12:19:28 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:24:03 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 19:53:18 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 20:26:22 
Re: The Promise of Forth (Doty)
Jonah Thomas <jethomas  2008-03-26 23:22:59 
Re: The Promise of Forth (Doty)
John Doty <jpd@[EMAIL   2008-03-27 16:55:46 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-27 02:51:50 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:23:42 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 15:14:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:26:43 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 15:23:15 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 21:35:47 
Re: The Promise of Forth (Doty)
Jonah Thomas <jethomas  2008-03-25 23:26:05 
Re: The Promise of Forth (doty)
Jonah Thomas <jethomas  2008-03-25 23:30:28 
Re: The Promise of Forth (doty)
"Rod Pemberton"  2008-03-27 05:50:34 
Re: The Promise of Forth (Doty)
Jonah Thomas <jethomas  2008-03-26 08:57:09 
Re: The Promise of Forth (Doty)
mhx@[EMAIL PROTECTED] (M  2008-03-26 19:16:10 
Re: The Promise of Forth (Doty)
Bruce McFarling <agila  2008-03-26 14:07:58 
Re: The Promise of Forth (Doty)
mhx@[EMAIL PROTECTED] (M  2008-03-26 22:33:00 
Re: The Promise of Forth (Doty)
Bruce McFarling <agila  2008-03-26 14:48:23 
Re: The Promise of Forth (doty)
Jonah Thomas <jethomas  2008-03-27 20:40:56 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-27 21:10:39 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 22:22:53 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-04-01 14:37:57 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:01:14 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-02 02:54:39 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-01 16:20:49 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-03 00:40:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-01 16:39:19 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 23:00:00 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-02 17:13:44 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 18:18:03 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-01 20:03:58 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-01 19:58:34 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-02 22:15:33 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 17:53:48 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-03 19:45:21 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 17:33:56 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 00:19:39 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 21:00:25 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-04 11:30:17 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-06 00:01:05 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-06 13:26:40 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-07 21:14:47 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-08 10:20:03 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-04 19:01:03 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-03 16:36:41 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 21:43:44 
[Doty] Re: The Promise of Forth
Andrew Haley <andrew29  2008-04-04 04:25:52 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-04-04 13:30:44 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 10:00:37 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-04-04 12:33:50 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-04 08:37:58 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-05 21:51:10 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-02 22:45:20 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 17:12:47 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-03 22:02:36 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 17:05:38 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 00:17:35 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 18:46:00 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 16:02:45 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 10:40:20 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 22:14:28 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 16:24:05 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-05 00:57:17 
Re: The Promise of Forth
Bruce McFarling <agila  2008-05-02 04:44:30 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 10:05:50 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 09:20:12 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 13:29:06 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 15:26:26 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 17:43:46 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 16:48:13 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 19:09:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 13:51:32 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:34:29 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 22:40:44 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 17:05:49 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 14:53:40 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:58:08 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 15:33:35 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 13:40:56 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 23:24:16 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 18:52:41 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 17:30:43 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 21:38:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 22:04:12 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-05 06:50:35 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-05 10:30:48 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-05 12:19:05 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-06 09:12:47 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-14 14:39:59 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-01 21:28:51 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-05-02 14:49:32 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-05-02 17:28:03 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 13:35:36 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-05-02 23:02:11 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-05-03 15:01:03