1.7 KiB
1.7 KiB
Overview
- arm - ARM64 implementation (w.i.p.)
- asm - Pseudo-assembler stage
- asmc - Compiles assembler to actual machine code
- ast - Abstract syntax tree generation with the
Parse
function - build - Build command
- cli - Command line interface
- compiler - Compiler frontend used by
build
- config - Globals for the entire project
- core - Definition of
Function
and how to compile it (usesregister.Machine
) - cpu - Types to simulate a generic CPU during compilation
- data - Data container that can re-use existing data (e.g. the
Hello
inHello World
) - dll - DLL support for Windows systems (w.i.p.)
- elf - ELF format for Linux executables
- errors - Error types
- expression - Expression parser generating trees with the
Parse
function - fs - File system access
- macho - MachO format for Mac executables
- pe - PE format for Windows executables
- register - Defines
Machine
type combining an assembler with CPU states - riscv - RISCV implementation (w.i.p.)
- scanner - Scanner frontend used by
build
- scope - Defines a
Scope
used for code blocks - sizeof - Calculates the byte size of numbers
- token - Converts a file to tokens with the
Tokenize
function - types - Type system
- x86 - x86-64 implementation