mirror of
https://github.com/bearlanguageorg/bear.git
synced 2026-08-26 15:37:18 +00:00
46 lines
780 B
V
46 lines
780 B
V
// vuurraaf/v
|
|
// A complete toolchain for VuurRaaf, in V. This toolchain is made from zero,
|
|
// and includes custom compiler, assembler, linker, and runtime.
|
|
// It is designed to be simple and easy to understand, while still being powerful
|
|
// enough to compile and run VuurRaaf programs.
|
|
|
|
module main
|
|
|
|
import os
|
|
import v.vmod
|
|
|
|
fn toolchain_loader() {}
|
|
|
|
fn toolchain_unloader() {}
|
|
|
|
fn toolchain_alloc() {}
|
|
|
|
fn toolchain_free() {}
|
|
|
|
fn toolchain_compile() {}
|
|
|
|
fn toolchain_assemble() {}
|
|
|
|
fn toolchain_link() {}
|
|
|
|
fn toolchain_run() {}
|
|
|
|
fn toolchain_debug() {}
|
|
|
|
fn toolchain_help() {}
|
|
|
|
fn toolchain_version() {}
|
|
|
|
fn toolchain_info() {}
|
|
|
|
fn toolchain_config() {}
|
|
|
|
fn toolchain_test() {}
|
|
|
|
fn toolchain_bench() {}
|
|
|
|
fn toolchain_clean() {}
|
|
|
|
fn toolchain_up() {}
|
|
|
|
fn toolchain_symlink() {} |