| \ High level floating point 14jan94py |
\ High level floating point 14jan94py |
| |
|
| \ Copyright (C) 1995,1997,2003 Free Software Foundation, Inc. |
\ Copyright (C) 1995,1997,2003,2004,2005,2006 Free Software Foundation, Inc. |
| |
|
| \ This file is part of Gforth. |
\ This file is part of Gforth. |
| |
|
| scratch over c@ emit '. emit 1 /string type |
scratch over c@ emit '. emit 1 /string type |
| 'E emit . ; |
'E emit . ; |
| |
|
| require debugs.fs |
|
| |
|
| : sfnumber ( c-addr u -- r true | false ) |
: sfnumber ( c-addr u -- r true | false ) |
| 2dup [CHAR] e scan ( c-addr u c-addr2 u2 ) |
2dup [CHAR] e scan ( c-addr u c-addr2 u2 ) |
| dup 0= |
dup 0= |
| 2drop false |
2drop false |
| THEN ; |
THEN ; |
| |
|
| :noname ( c-addr u -- ) |
[ifundef] compiler-notfound1 |
| |
defer compiler-notfound1 |
| |
' no.extensions IS compiler-notfound1 |
| |
|
| |
:noname compiler-notfound1 execute ; is compiler-notfound |
| |
|
| |
defer interpreter-notfound1 |
| |
' no.extensions IS interpreter-notfound1 |
| |
|
| |
:noname interpreter-notfound1 execute ; is interpreter-notfound |
| |
[then] |
| |
|
| |
:noname ( c-addr u -- ... xt ) |
| 2dup sfnumber |
2dup sfnumber |
| IF |
IF |
| 2drop POSTPONE FLiteral |
2drop [comp'] FLiteral |
| ELSE |
ELSE |
| defers compiler-notfound |
defers compiler-notfound1 |
| ENDIF ; |
ENDIF ; |
| IS compiler-notfound |
IS compiler-notfound1 |
| |
|
| :noname ( c-addr u -- r ) |
:noname ( c-addr u -- ... xt ) |
| 2dup sfnumber |
2dup sfnumber |
| IF |
IF |
| 2drop |
2drop ['] noop |
| ELSE |
ELSE |
| defers interpreter-notfound |
defers interpreter-notfound1 |
| ENDIF ; |
ENDIF ; |
| IS interpreter-notfound |
IS interpreter-notfound1 |
| |
|
| : fvariable ( "name" -- ) \ float f-variable |
: fvariable ( "name" -- ) \ float f-variable |
| Create 0.0E0 f, ; |
Create 0.0E0 f, ; |
| |
|
| : FMOD ( r1 r2 -- r ) |
: FMOD ( r1 r2 -- r ) |
| \ remainder of r1/r2 |
\ remainder of r1/r2 |
| \ !! should be implemented properly |
|
| FOVER FOVER F/ ftrunc F* F- ; |
FOVER FOVER F/ ftrunc F* F- ; |