-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.rs
More file actions
507 lines (429 loc) · 13.5 KB
/
main.rs
File metadata and controls
507 lines (429 loc) · 13.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
use clap::Parser;
#[cfg(feature = "tui")]
use i8051_debug_tui::{Debugger, TracingCollector};
use ssu::session::SessionConfig;
use std::path::PathBuf;
use tracing::{Level, info};
#[cfg(not(target_arch = "wasm32"))]
use std::time::Instant;
mod host;
mod machine;
use i8051::Cpu;
use crate::machine::System;
#[derive(Default, Clone, Copy, PartialEq, Eq, clap::ValueEnum)]
enum Display {
/// No display. Runs the emulator in headless mode.
#[default]
Headless,
/// Display the video output in a text-based UI.
#[cfg(feature = "tui")]
Text,
/// Display the video output in a graphical UI.
#[cfg(feature = "graphics")]
Graphics,
}
#[derive(Default, Clone, Copy, PartialEq, Eq, clap::ValueEnum)]
enum MachineType {
/// VT420
#[default]
VT420,
/// VT520 or VT525
VT52x,
/// VT510
VT510,
}
/// VT420 Terminal Emulator
/// Emulates a VT420 terminal using an 8051 microcontroller
#[derive(Default, Parser)]
#[command(name = "vt-emulator")]
#[command(about = "A VT420 terminal emulator using 8051 CPU emulation")]
struct Args {
/// Path to the ROM file
#[arg(long)]
#[cfg(not(feature = "embed-rom"))]
rom: PathBuf,
/// Path to the ROM file
#[arg(long)]
#[cfg(feature = "embed-rom")]
rom: Option<PathBuf>,
/// Path to the non-volatile RAM file
#[arg(long)]
nvr: Option<PathBuf>,
/// Display the video output
#[arg(long, conflicts_with = "benchmark")]
display: Option<Display>,
/// Comm1 session configuration
#[arg(long = "comm1", value_name = "SESSION")]
comm1: Option<SessionConfig>,
/// Comm2 session configuration
#[arg(long = "comm2", value_name = "SESSION")]
comm2: Option<SessionConfig>,
/// Display the video RAM
#[arg(long, requires = "display")]
show_vram: bool,
/// Display the mapper
#[arg(long, requires = "display")]
show_mapper: bool,
/// Enable debugger
#[arg(long)]
debug: bool,
/// Breakpoints for debug mode, repeatable, parsed as hex
#[arg(value_parser = parse_hex_address, long="bp", alias="breakpoint")]
breakpoint: Vec<u32>,
/// Enable logging
#[arg(long)]
log: bool,
/// Enable verbose output
#[arg(short, long)]
verbose: bool,
/// Run the benchmark mode to see how many cycles we can hit
#[arg(long, conflicts_with = "display")]
benchmark: bool,
/// Skip diagnostics
#[arg(long)]
skip_diagnostics: bool,
/// Machine type
#[arg(long, default_value = "vt420")]
machine: MachineType,
}
fn parse_hex_address(s: &str) -> Result<u32, Box<dyn std::error::Error + Send + Sync>> {
Ok(u32::from_str_radix(s, 16)?)
}
fn setup_logging(args: &Args, #[cfg(feature = "tui")] trace_collector: TracingCollector) {
let level = if args.verbose {
Level::TRACE
} else {
Level::INFO
};
#[cfg(feature = "tui")]
if args.debug {
host::logging::setup_logging_debugger(level, trace_collector.clone());
return;
}
match args.display.unwrap_or(Display::Headless) {
Display::Headless => {
host::logging::setup_logging_stdio(level);
}
#[cfg(feature = "graphics")]
Display::Graphics => {
host::logging::setup_logging_stdio(level);
}
#[cfg(feature = "tui")]
Display::Text => {
if args.log {
host::logging::setup_logging_file(level);
}
}
}
}
#[cfg(target_arch = "wasm32")]
fn get_hash_param() -> Option<String> {
use web_sys::window;
window()
.map(|window| window.location())
.and_then(|location| location.hash().ok())
.and_then(|hash| {
if let Some(hash) = hash.strip_prefix('#') {
Some(hash.replace("%20", " "))
} else {
None
}
})
}
#[cfg(target_arch = "wasm32")]
#[wasm_bindgen::prelude::wasm_bindgen(start)]
fn start() {
use std::str::FromStr;
use tracing::error;
use web_sys::window;
console_error_panic_hook::set_once();
let mut config = tracing_wasm::WASMLayerConfigBuilder::new();
config.set_max_level(Level::INFO);
tracing_wasm::set_as_global_default_with_config(config.build());
// If comm1 is set in the window's hash, use it
let comm1 = if let Some(comm1) = get_hash_param() {
Some(SessionConfig::from_str(&comm1).unwrap())
} else {
None
};
if let Err(e) = run_vt420(
Args {
display: Some(Display::Graphics),
comm1,
skip_diagnostics: true,
..Default::default()
},
#[cfg(feature = "tui")]
TracingCollector::new(1000),
) {
error!("Error: {}", e);
}
}
fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
let mut args = Args::parse();
// Set display to Headless if benchmark is set
if args.benchmark {
args.display = Some(Display::Headless);
}
#[cfg(feature = "tui")]
let trace_collector = TracingCollector::new(1000);
setup_logging(
&args,
#[cfg(feature = "tui")]
trace_collector.clone(),
);
match args.machine {
MachineType::VT420 => run_vt420(
args,
#[cfg(feature = "tui")]
trace_collector,
),
MachineType::VT52x => run_vt52x(
args,
#[cfg(feature = "tui")]
trace_collector,
),
MachineType::VT510 => run_vt510(
args,
#[cfg(feature = "tui")]
trace_collector,
),
}
}
fn run_vt420(
args: Args,
#[cfg(feature = "tui")] trace_collector: TracingCollector,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
use machine::vt420::breakpoints::create_breakpoints;
info!("VT420 Emulator starting...");
#[cfg(not(feature = "embed-rom"))]
let rom = {
use std::fs;
info!("Loading ROM file: {:?}...", args.rom);
// Check if ROM file exists
if !args.rom.exists() {
info!("Error: ROM file does not exist: {:?}", args.rom);
std::process::exit(1);
}
fs::read(&args.rom)?
};
#[cfg(feature = "embed-rom")]
let mut rom = { include_bytes!("../roms/vt420/23-068E9-00.bin").to_vec() };
#[cfg(feature = "embed-rom")]
if let Some(rom_path) = args.rom {
use std::fs;
info!("Loading ROM file: {:?}...", rom_path);
// Check if ROM file exists
if !rom_path.exists() {
info!("Error: ROM file does not exist: {:?}", rom_path);
std::process::exit(1);
}
rom = fs::read(&rom_path)?;
};
info!("Configuring system...");
let vt420 = machine::vt420::System::new(rom, args.nvr.as_deref(), args.comm1, args.comm2)?;
let mut system = System::new(vt420);
let breakpoints = &mut system.system.breakpoints;
if args.log {
create_breakpoints(breakpoints, &system.system.rom);
}
info!("Starting CPU execution...");
let mut cpu = Cpu::new();
#[cfg(not(target_arch = "wasm32"))]
let start_time = Instant::now();
info!("CPU initialized, PC = 0x{:04X}", cpu.pc_ext(&system));
if args.skip_diagnostics {
// TODO: This should be more heuristic
for _ in 0..0x800_000_u64 {
system.step(&mut cpu);
}
}
#[cfg(feature = "tui")]
let debugger = if args.debug {
let mut debugger = Debugger::new(Default::default(), trace_collector)?;
for breakpoint in args.breakpoint {
debugger.breakpoints_mut().insert(breakpoint);
}
Some(debugger)
} else {
None
};
let instruction_count = if args.benchmark {
for _ in 0..100_000_000 {
system.step(&mut cpu);
}
system.instruction_count
} else {
match args.display.unwrap_or(Display::Headless) {
Display::Headless => host::screen::headless::run(
system,
cpu,
#[cfg(feature = "tui")]
debugger,
)?,
#[cfg(feature = "tui")]
Display::Text => host::screen::ratatui::run(
system.system,
cpu,
debugger,
args.show_mapper,
args.show_vram,
)?,
#[cfg(feature = "graphics")]
Display::Graphics => host::screen::framebuffer::run(
system.system,
cpu,
#[cfg(feature = "tui")]
debugger,
)?,
}
};
#[cfg(not(target_arch = "wasm32"))]
let elapsed = start_time.elapsed();
println!("CPU execution completed:");
println!(" Instructions executed: {instruction_count}");
#[cfg(not(target_arch = "wasm32"))]
println!(" Time elapsed: {elapsed:?}");
#[cfg(not(target_arch = "wasm32"))]
if elapsed.as_secs_f64() > 0.0 {
let ips = instruction_count as f64 / elapsed.as_secs_f64();
println!(" Instructions per second: {ips:.0}",);
println!(" % of real CPU: {:.0}%", ips / 1000000.0 * 100.0);
}
println!("VT420 emulator execution completed!");
Ok(())
}
fn run_vt52x(
args: Args,
#[cfg(feature = "tui")] trace_collector: TracingCollector,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
info!("VT52x Emulator starting...");
#[cfg(not(feature = "embed-rom"))]
let rom = {
use std::fs;
info!("Loading ROM file: {:?}...", args.rom);
// Check if ROM file exists
if !args.rom.exists() {
info!("Error: ROM file does not exist: {:?}", args.rom);
std::process::exit(1);
}
fs::read(&args.rom)?
};
#[cfg(feature = "embed-rom")]
let mut rom = { include_bytes!("../roms/vt520/23-010ED-00.bin").to_vec() };
#[cfg(feature = "embed-rom")]
if let Some(rom_path) = args.rom {
use std::fs;
info!("Loading ROM file: {:?}...", rom_path);
// Check if ROM file exists
if !rom_path.exists() {
info!("Error: ROM file does not exist: {:?}", rom_path);
std::process::exit(1);
}
rom = fs::read(&rom_path)?;
};
info!("Configuring system...");
let vt52x = machine::vt52x::System::new(rom, args.nvr.as_deref(), args.comm1, args.comm2)?;
let mut system = System::new(vt52x);
info!("Starting CPU execution...");
let mut cpu = Cpu::new();
#[cfg(not(target_arch = "wasm32"))]
let start_time = Instant::now();
info!("CPU initialized, PC = 0x{:04X}", cpu.pc_ext(&system));
#[cfg(feature = "tui")]
let debugger = if args.debug {
let mut debugger = Debugger::new(Default::default(), trace_collector)?;
for breakpoint in args.breakpoint {
debugger.breakpoints_mut().insert(breakpoint);
}
Some(debugger)
} else {
None
};
let instruction_count = if args.benchmark {
for _ in 0..100_000_000 {
system.step(&mut cpu);
}
system.instruction_count
} else {
match args.display.unwrap_or(Display::Headless) {
Display::Headless => host::screen::headless::run(
system,
cpu,
#[cfg(feature = "tui")]
debugger,
)?,
_ => {
unimplemented!()
}
}
};
Ok(())
}
fn run_vt510(
args: Args,
#[cfg(feature = "tui")] trace_collector: TracingCollector,
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
info!("VT510 Emulator starting...");
#[cfg(not(feature = "embed-rom"))]
let rom = {
use std::fs;
info!("Loading ROM file: {:?}...", args.rom);
// Check if ROM file exists
if !args.rom.exists() {
info!("Error: ROM file does not exist: {:?}", args.rom);
std::process::exit(1);
}
fs::read(&args.rom)?
};
#[cfg(feature = "embed-rom")]
let mut rom = { include_bytes!("../roms/vt510/23-032ED-00.bin").to_vec() };
#[cfg(feature = "embed-rom")]
if let Some(rom_path) = args.rom {
use std::fs;
info!("Loading ROM file: {:?}...", rom_path);
// Check if ROM file exists
if !rom_path.exists() {
info!("Error: ROM file does not exist: {:?}", rom_path);
std::process::exit(1);
}
rom = fs::read(&rom_path)?;
};
info!("Configuring system...");
let vt510 = machine::vt510::System::new(rom, args.nvr.as_deref(), args.comm1, args.comm2)?;
let mut system = System::new(vt510);
info!("Starting CPU execution...");
let mut cpu = Cpu::new();
#[cfg(not(target_arch = "wasm32"))]
let start_time = Instant::now();
info!("CPU initialized, PC = 0x{:04X}", cpu.pc_ext(&system));
#[cfg(feature = "tui")]
let debugger = if args.debug {
let mut debugger = Debugger::new(Default::default(), trace_collector)?;
for breakpoint in args.breakpoint {
debugger.breakpoints_mut().insert(breakpoint);
}
Some(debugger)
} else {
None
};
let instruction_count = if args.benchmark {
for _ in 0..100_000_000 {
system.step(&mut cpu);
}
system.instruction_count
} else {
match args.display.unwrap_or(Display::Headless) {
Display::Headless => host::screen::headless::run(
system,
cpu,
#[cfg(feature = "tui")]
debugger,
)?,
_ => {
unimplemented!()
}
}
};
Ok(())
}