q/src
2025-02-04 14:41:04 +01:00
..
arm64 Reduced number of packages 2024-08-26 15:34:34 +02:00
asm Fixed incorrect section offsets on Windows 2025-02-03 14:23:23 +01:00
ast Simplified tokenizer 2025-02-02 11:11:59 +01:00
build Implemented struct parser 2025-02-04 14:41:04 +01:00
cli Fixed incorrect OS detection 2025-01-31 21:50:35 +01:00
compiler Implemented struct parser 2025-02-04 14:41:04 +01:00
config Forced the evaluation of symlinks 2025-02-04 00:00:43 +01:00
core Simplified register usage visualization 2025-02-03 21:20:48 +01:00
cpu Simplified file structure 2024-08-07 19:39:10 +02:00
data Improved documentation 2025-01-28 13:43:38 +01:00
dll Improved Windows support 2024-08-19 17:25:51 +02:00
elf Improved section offset calculation 2025-01-20 13:51:47 +01:00
errors Implemented struct parser 2025-02-04 14:41:04 +01:00
expression Improved code style 2025-01-30 22:23:38 +01:00
fs Reduced number of packages 2024-08-26 15:34:34 +02:00
macho Improved code style 2025-01-30 22:23:38 +01:00
pe Improved code style 2025-01-30 22:23:38 +01:00
register Implemented basic support for function pointers 2025-01-30 16:33:20 +01:00
riscv Flattened package hierarchy 2024-08-25 20:38:22 +02:00
scanner Implemented struct parser 2025-02-04 14:41:04 +01:00
scope Improved type system 2024-08-08 12:55:25 +02:00
sizeof Simplified file structure 2024-08-07 19:39:10 +02:00
token Implemented struct parser 2025-02-04 14:41:04 +01:00
types Improved type system 2024-08-08 12:55:25 +02:00
x64 Improved code style 2025-01-30 22:23:38 +01:00
readme.md Improved documentation 2025-01-28 14:04:30 +01:00

Overview

  • arm64 - ARM64 implementation (w.i.p.)
  • asm - Pseudo-assembler stage
  • 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 (uses register.Machine)
  • cpu - Types to simulate a generic CPU during compilation
  • data - Data container that can re-use existing data (e.g. the Hello in Hello 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 (w.i.p.)
  • x64 - x86-64 implementation