Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Latest commit

 

History

History
27 lines (18 loc) · 544 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 544 Bytes

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!