Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hyouteki/kappa
- Owner: hyouteki
- License: mit
- Created: 2023-11-18T10:37:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-22T08:32:12.000Z (about 1 year ago)
- Last Synced: 2024-10-19T08:15:28.517Z (3 months ago)
- Topics: compiler, nasm, rust
- Language: Rust
- Homepage:
- Size: 343 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```