Page 16 of 16

Re: FIF. Another FORTH.

Posted: Sun May 30, 2021 11:52 pm
by Moggy
Thanks for that Alan will try my best with the editor should anything arise.

Re: FIF. Another FORTH.

Posted: Mon May 31, 2021 1:28 pm
by Moggy
Quick question re the maths operators which whilst specific to FIF could apply to others I suppose.

The zeddy computes and displays to 8 decimal figures but FIF/Forth to 10 (with reasonable scaling) so does FIF use it own standalone maths operators or does it pinch something from zeddies ROM then add something of its own?

Just curious as to how these things work.

Re: FIF. Another FORTH.

Posted: Mon May 31, 2021 3:56 pm
by roganjosh
It has its own m/c routines to do a 32x16 divide and a 16x16 multiply. The Forth maths words ultimately feed off those two routines.

Alan

Re: FIF. Another FORTH.

Posted: Wed Jun 02, 2021 9:33 pm
by roganjosh
FIF 1.03 is now available.

This is a bugfix release. Also note that a few of the screen files have had minor edits so you'll need to re-copy them all to your preferred location.

Grateful plaudits to Moggy for the time he's taken to produce & report the sequences of operations that were causing him difficulties.

Alan

Re: FIF. Another FORTH.

Posted: Wed Jun 02, 2021 10:28 pm
by Moggy
Don't use it you'll go blind and fall off the edge of the world!! :lol:

Screen 0 AAARRRGGGGHH screen 0 take it away Matron.


A heavily sedated Moggy collapses into a heap never to mess with Forth again

Re: FIF. Another FORTH.

Posted: Fri Jun 11, 2021 11:08 pm
by mrtinb
Two first words in my collection.

Image

Re: FIF. Another FORTH.

Posted: Sun Mar 20, 2022 8:48 am
by mrtinb
Just a little question about FIF81.

If I want to define a new word with machine code in ToddyForth, I do this:

Code: Select all

HEX
CODE WORDNAME B1 C, B2 C, B3 C, B4 C, B5 C, NEXT
DECIMAL
How do I do that in FIF81?

Re: FIF. Another FORTH.

Posted: Sun Mar 20, 2022 8:40 pm
by roganjosh
Ah, I answered that earlier in this thread:
viewtopic.php?p=42985#p42985

If you remember it was when you'd asked a question and I'd misunderstood what you wanted and posted the above info. It is the best answer I can give to your current question though.

Alan

Re: FIF. Another FORTH.

Posted: Sun Mar 20, 2022 8:58 pm
by mrtinb
Thanks :-)