FIF. Another FORTH.
Re: FIF. Another FORTH.
Thanks for that Alan will try my best with the editor should anything arise.
???????????????????????????PIINKEY$?????RND????????????????????????????????????????????????????????PI????????
Re: FIF. Another FORTH.
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.
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.
???????????????????????????PIINKEY$?????RND????????????????????????????????????????????????????????PI????????
Re: FIF. Another FORTH.
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
Alan
Re: FIF. Another FORTH.
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
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.
Don't use it you'll go blind and fall off the edge of the world!!
Screen 0 AAARRRGGGGHH screen 0 take it away Matron.
A heavily sedated Moggy collapses into a heap never to mess with Forth again
Screen 0 AAARRRGGGGHH screen 0 take it away Matron.
A heavily sedated Moggy collapses into a heap never to mess with Forth again
???????????????????????????PIINKEY$?????RND????????????????????????????????????????????????????????PI????????
Re: FIF. Another FORTH.
Two first words in my collection.
Re: FIF. Another FORTH.
Just a little question about FIF81.
If I want to define a new word with machine code in ToddyForth, I do this:
How do I do that in 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
Re: FIF. Another FORTH.
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
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.
Thanks