CPunch / Pyuxncle

Small C-like language compiler for the Uxntal assembly language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pyuxncle

Pyuxncle is a single-pass compiler for a small subset of C (albeit without the std library). This compiler targets Uxntal, the assembly language of the Uxn virtual computer. The output Uxntal is not meant to be human readable, only to be directly passed to uxnasm.

Usage

To compile a source file, pass it like so:

./src/pyuxncle [SRC_FILE] [OUT_UXNTAL_FILE]

Examples

device Console[0x18] {
    char write;
};

Console.write = 'H';
Console.write = 'i';
Console.write = '!';
Console.write = 0x0A;

Hi!

About

Small C-like language compiler for the Uxntal assembly language


Languages

Language:Python 100.0%