16 lines
572 B
Markdown
16 lines
572 B
Markdown
# ASCII Rendered, Compiled Target Invocation Code
|
|
|
|
Like the JVM, but the "binaries" consist of printable ASCII characters and the
|
|
result can be more easily precompiled for native execution.
|
|
|
|
## TODO
|
|
|
|
- multiprocessing support (call-through to fork()? codeN for each process?)
|
|
- probably want to repurpose breakpoint into fork
|
|
- overall philosophy
|
|
- easy to target for compilers
|
|
- easy to implement with overhead
|
|
- possible to implement with no/low overhead
|
|
- can use easy but "slow" or DIY?
|
|
- e.g. MALL vs static memory and custom allocation
|