retroforth/interface/block.retro
crc e2b55648cb add comma & gc to glossary
FossilOrigin-Name: b2a5e66264d4a5b2a757710c72641cd097445b6b7109cd91c0d22668aa4ed637
2023-01-26 22:29:37 +00:00

32 lines
705 B
Forth

Blocks allow for a simple storage subsystem. In the smaller ilo
and napia based systems, they are mandatory and are the primary
means of data and code storage
Under RetroForth/nga, this is optional, but is enabled by
default.
The exposed word set is compact:
block:set-file (s-)
block:read (na-)
block:write (na-)
~~~
{{
:block:invoke #3 io:scan-for io:invoke ;
---reveal---
:block:read (na-) #0 block:invoke ;
:block:write (na-) #1 block:invoke ;
:block:set-file (s-) #2 block:invoke ;
}}
~~~
# Source Data
~~~
'interface/blocks.retro s:dedup
dup 'block:read d:lookup d:source store
dup 'block:write d:lookup d:source store
dup 'block:set-file d:lookup d:source store
drop
~~~