Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hyouteki/kappa

Compiler implementation for my language from scratch
https://github.com/hyouteki/kappa

compiler nasm rust

Last synced: about 2 months ago
JSON representation

Compiler implementation for my language from scratch

Awesome Lists containing this project

README

        

> [!IMPORTANT]
> Work in progress

## Quick Start
``` console
cargo run -- compile --felf64 -f ./eg/main.K
nasm -felf64 ./eg/main.asm -o ./eg/main.o
ld ./eg/main.o -o ./eg/main
./eg/main
```