1cdc78cbc8
FossilOrigin-Name: 119a79b7728fd51a3e2a33c07f854895e26ff3780649281b4587a86c57c76087
33 lines
692 B
Forth
33 lines
692 B
Forth
# Retro/ilo & Retro/napia Words
|
|
|
|
This adds support for some words from Retro/ilo. It's intended
|
|
to aid in portability between the systems.
|
|
|
|
The basic math operations are given non-symbolic names and
|
|
placed in the `n:` namespace. (In Retro/ilo, these are the
|
|
standard names for these).
|
|
|
|
~~~
|
|
:n:add + ;
|
|
:n:sub - ;
|
|
:n:mul * ;
|
|
:n:div / ;
|
|
:n:mod mod ;
|
|
:n:divmod /mod ;
|
|
|
|
:comma , ;
|
|
:gc &Heap swap v:preserve ;
|
|
~~~
|
|
|
|
Provide source data.
|
|
|
|
~~~
|
|
'retro-napia.retro
|
|
dup 'n:add d:lookup d:source store
|
|
dup 'n:sub d:lookup d:source store
|
|
dup 'n:mul d:lookup d:source store
|
|
dup 'n:div d:lookup d:source store
|
|
dup 'n:mod d:lookup d:source store
|
|
dup 'n:divmod d:lookup d:source store
|
|
drop
|
|
~~~
|