Main c implementation and documentation.
Find a file
2024-01-04 09:44:58 -05:00
build Updated syntax sample 2023-09-27 18:40:28 -04:00
doc Implemented syscalls 2024-01-03 19:06:22 -05:00
samples Implemented syscalls 2024-01-03 19:06:22 -05:00
.gitignore Implemented syscalls 2024-01-03 19:06:22 -05:00
generate_handle_syscalls.jq Implemented syscalls 2024-01-03 19:06:22 -05:00
generate_handle_syscalls.sh Implemented syscalls 2024-01-03 19:06:22 -05:00
Makefile Removed Nim stuff 2024-01-04 09:44:58 -05:00
README.md Implemented many operations 2023-12-19 00:31:53 -05:00

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 overhead
    • can use easy but "slow" or DIY
      • e.g. MALL vs static memory and custom allocation