retroforth/example/amalgamate.retro
crc db5b50759e examples: amalgamate now works w/modular retro-unix.c + devices
FossilOrigin-Name: e81e18d7b2d6825f0b5570b9ba0193653d36a2b2c0310e23c4eada89efee421f
2020-10-22 19:11:24 +00:00

41 lines
816 B
Text

# Amalgamate
The standard RETRO system is built using the Nga VM[1] and a
copy of the image exported as a C source file[2]. I sometimes
prefer to have these as a single file for easier sharing. This
is a quick little tool to combine them.
Output will be written to stdout.
## References
[1] vm/nga-c/retro-unix.c
[2] vm/nga-c/retro-image.c
## Code
Include compilation instructions.
~~~
'/*_Build_with_`cc_-lm_-O2_retro-unix.c_-o_retro`_*/ s:put nl nl
~~~
Then extract and generate the single file source.
~~~
{{
:include-file
#10 + s:chop 'vm/nga-c/ s:prepend here swap file:slurp here s:put ;
:source:line
dup '#include_" s:begins-with?
[ include-file ] [ s:put nl ] choose ;
---reveal---
:amalgamate
'vm/nga-c/retro-unix.c [ source:line ] file:for-each-line ;
}}
amalgamate
~~~