retroforth/interface/multicore.retro
crc 22a38f34d4 add in the supporting words for interacting with cores (when multicore is enabled); disabled by default and not yet documented.
FossilOrigin-Name: 34f77c8a8fc8bbdea959c07c0cdec643925976ab60df85f334585cee4d0bb9a2
2021-08-31 10:12:28 +00:00

11 lines
283 B
Forth

~~~
:io:core #8000 io:scan-for io:invoke ;
:core:init (n-) #0 io:core ;
:core:start (an-) #1 io:core ;
:core:pause (n-) #2 io:core ;
:core:pause-current (-) #3 io:core ;
:core:resume (n-) #4 io:core ;
:core:read/reg (n-v) #5 io:core ;
:core:write/reg (vn-) #6 io:core ;
~~~