No description
  • OCaml 72.4%
  • Assembly 27.5%
  • Makefile 0.1%
Find a file
2021-11-06 09:27:55 +01:00
examples Add a simple testsuite recording size, output & intermediate representations 2021-11-03 14:23:15 +01:00
lib cleanup 2021-11-05 00:53:27 +01:00
src Reorganize files into lib/ and src/ 2021-11-03 14:22:54 +01:00
test C->Cminor: translate variables whose address is taken to explicit stack allocated slots 2021-11-05 00:25:39 +01:00
.gitignore Fixed many bugs; + moved stack & runtime vars to main memory 2021-10-29 22:51:30 +02:00
dune-project initial version using zero-page (not working, unknown why) 2021-10-24 23:08:53 +02:00
Makefile Add a simple testsuite recording size, output & intermediate representations 2021-11-03 14:23:15 +01:00
README.md expand README a little 2021-11-06 09:27:55 +01:00

Conch

Compiler for a C-like language to Uxn.

This is very much a work in progress.

Building

Building requires ocaml, dune and the containers ocaml library. The recommended way to install those is by using opam.

Then:

make
_build/default/src/conch.exe input.cm output.rom

Input language

See the examples/ directory for some examples.