..
2025-03-06 23:13:14 +01:00
2025-03-06 23:13:14 +01:00
2025-03-09 17:51:24 +01:00
2025-02-25 17:16:09 +01:00
2025-02-25 17:16:09 +01:00
2025-03-09 00:23:23 +01:00
2025-03-03 12:14:53 +01:00
2025-03-09 00:23:23 +01:00
2025-03-10 15:58:31 +01:00
2025-03-05 14:41:58 +01:00
2025-03-06 16:54:28 +01:00
2024-08-19 17:25:51 +02:00
2025-03-09 00:23:23 +01:00
2025-03-02 21:36:23 +01:00
2025-03-01 18:38:00 +01:00
2025-03-08 22:14:24 +01:00
2025-02-27 23:28:17 +01:00
2025-03-08 22:14:24 +01:00
2025-03-08 22:14:24 +01:00
2025-03-09 00:23:23 +01:00
2025-03-06 13:40:17 +01:00
2025-02-25 17:16:09 +01:00
2025-03-06 16:54:28 +01:00
2025-02-28 12:15:19 +01:00
2025-02-25 17:16:09 +01:00
2025-02-27 23:28:17 +01:00
2025-02-27 14:16:25 +01:00
2025-03-09 23:27:40 +01:00
2025-03-08 22:14:24 +01:00
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
- exe - Generic executable format to calculate section offsets
- errors - Error types
- eval - Evaluates expressions
- 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