adfba876d2
- setup new UI layout using tiling and an action/message based system for updating global state based on interactions with individual tiles and vice versa - added custom dialogs and UI helpers to create a more cohesive UI - added a disassembler widget (WIP) - added a documentation widget (WIP) - refactored backend halt/pause logic to fix bugs. - started emulator implementation documentation (to complement the ISA spec)
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "emulator_ui"
|
|
version = "0.3.0"
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
|
|
[[bin]]
|
|
name = "dsa"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "dsa"
|
|
path = "src/lib.rs"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.8.2", features = ["html_reports"] }
|
|
|
|
[dependencies]
|
|
arc-swap = "1.8.2"
|
|
clap = { version = "4.5.60", features = ["derive"] }
|
|
fxhash = "0.2.1"
|
|
ron = "0.12.0"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
|
|
common = { path = "../../common" }
|
|
egui = "0.35.0"
|
|
eframe = "0.35.0"
|
|
egui_tiles = "0.16.0"
|
|
egui_code_editor = "0.3.7"
|
|
egui_file = "0.27.0"
|
|
dirs = "6.0.0"
|
|
assembler = { path = "../../assembler" }
|
|
egui_extras = "0.35.0"
|
|
emulator_core = { version = "0.3.0", path = "../emulator_core" }
|
|
disassembler = { version = "0.3.0", path = "../../disassembler" }
|
|
egui-file-dialog = "0.14.1"
|
|
egui_commonmark = { version = "0.24.0", features = ["better_syntax_highlighting", "macros"] }
|
|
|
|
[features]
|
|
default = ["mainstore-prealloc"]
|
|
|
|
# Memory Bank Features
|
|
mainstore-bulkalloc = [] # Fastest for Writes
|
|
mainstore-prealloc = [] # Fastest for Reads
|
|
mainstore-stackarray = [] # Slightly outperforms ArrayMap but requires a large stack
|
|
mainstore-arraymap = [] # Simple implementation
|
|
mainstore-hashmap = [] # Old implementation, no raw pointers. Uses a hashmap
|