Line: 1 to 1 | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
%DASHBOARD{ section="banner"
image="/twiki/pub/Cosmac/ForthSTM32WB/nucleo-header.jpg" | |||||||||||
Changed: | |||||||||||
< < | title="Floating Point Unit (FPU)" | ||||||||||
> > | title="Floating-Point Unit (FPU)" | ||||||||||
titlestyle="color:#F00000;"
}%
Intro
| |||||||||||
Changed: | |||||||||||
< < | Why Floating Point? | ||||||||||
> > | Why Floating-Point?STM AN4044![]() ![]()
| ||||||||||
Deleted: | |||||||||||
< < | Forth systems traditionally make use of cooperative multitasking. It is very simple and clever. But it has its limits. If you write all your software by yourself, each software part can be cooperative. But if you want to benefit from middleware written by somebody else (and most probably not written in Forth), you can be sure that software is not cooperative (in the context of multitasking). Forth wants to rule your system. I would like to have a Forth system that is cooperative. It should extend the system, to make it interactive and easy to use. | ||||||||||
Deleted: | |||||||||||
< < | The Forth interpreter (called terminal task in Forth jargon) itself is only a thread and can be used as some sort of CLI for testing purposes or could be the main part of the application. | ||||||||||
| |||||||||||
Changed: | |||||||||||
< < | Forth MultitaskingAndrew Haley wrote "Forth has been multi-tasking for almost 50 years. It's time to standardize it" and he is right. I will implement his proposed API for Mecrisp-Cube described in A multi-tasking wordset for Standard Forth![]() MULTI , SINGLE , or INIT-MULTI .
Floating Point Unit | ||||||||||
> > | Floating-Point Unit | ||||||||||
Line: 137 to 140 | |||||||||||
| |||||||||||
Changed: | |||||||||||
< < | Floating Point Words | ||||||||||
> > | Floating-Point WordsBare FPU Words (Without C Math Library) | ||||||||||
f+ ( r1 r2 -- r3 ) Add r1 to r2 giving the sum r3. | |||||||||||
Line: 148 to 153 | |||||||||||
fabs ( r1 -- r2 ) r2 is the absolute value of r1. fnegate ( r1 -- r2 ) r2 is the negation of r1. | |||||||||||
Added: | |||||||||||
> > | f0= ( r -- ? ) flag is true if and only if r is equal to zero f0< ( r -- ? ) flag is true if and only if r is less than zero f< ( r1 r2 -- ? ) flag is true if and only if r1 is less than r2 f~ ( r1 r2 r3 -- ? ) If r3 is positive, flag is true if the absolute value of (r1 minus r2) is less than r3 If r3 is zero, flag is true if the implementation-dependent encoding of r1 and r2 are exactly identical (positive and negative zero are unequal if they have distinct encodings). If r3 is negative, flag is true if the absolute value of (r1 minus r2) is less than the absolute value of r3 times the sum of the absolute values of r1 and r2. | ||||||||||
f>s ( r -- n ) n is the single-cell signed-integer equivalent of the integer portion of r. s>f ( n -- r ) r is the floating-point equivalent of the single-cell value n. f>fx ( r -- d ) d is the fixed-point equivalent of the floating-point r | |||||||||||
Line: 155 to 169 | |||||||||||
f. ( r -- ) Display, with a trailing space, the top number using fixed-point notation: | |||||||||||
Added: | |||||||||||
> > | fx* fx/ | ||||||||||
Changed: | |||||||||||
< < | C Math Library | ||||||||||
> > | Words Using C Math Libraryfsin ( r1 -- r2 ) r2 is the sine of the radian angle r1 | ||||||||||