writes bins better now

This commit is contained in:
2025-07-07 16:28:13 -04:00
parent 9c672741ed
commit 8c08555003
29 changed files with 1381 additions and 108 deletions
+18
View File
@@ -0,0 +1,18 @@
use clap::Parser;
use core::computers::rom_only::backplane::Backplane;
#[derive(Parser)]
struct CliOptions {
offset: u16,
bytes: u16,
filename: String
}
fn main() {
println!("Taxation is theft");
let opts = CliOptions::parse();
let mut rom_only = Backplane::new();
rom_only.tick()
}
+1 -1
View File
@@ -1,4 +1,4 @@
use core::mos6502cpu::Mos6502Cpu;
use core::mos6502cpu::cpu::Mos6502Cpu;
fn main() {
let x = Mos6502Cpu::default();