Projektrahmen: Cargo-Workspace, README und PLAN

Workspace mit sechs Crates (tb-frontend, tb-vm, tb-runtime, tb-ui,
tb-cli, tb-ide) als Geruest fuer die Re-Implementierung des
DOS-BASIC-Dialekts. Binaries: tbdos (IDE/TUI) und tbdosc
(Standalone-Compiler). PLAN.md dokumentiert Phasen, Explorations-
schritte und die Abwaegung der VM-/Runtime-Optionen (Entscheidung:
eigene Bytecode-VM, TBVM).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-01 16:21:09 +02:00
commit 5821ace0cf
31 changed files with 1161 additions and 0 deletions

12
crates/tb-vm/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "tb-vm"
description = "Terminal Basic: Bytecode-Definition, Codegenerator und virtuelle Maschine"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
[dependencies]
tb-frontend.workspace = true
thiserror.workspace = true
log.workspace = true