writes bins better now
This commit is contained in:
@@ -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,4 +1,4 @@
|
||||
use core::mos6502cpu::Mos6502Cpu;
|
||||
use core::mos6502cpu::cpu::Mos6502Cpu;
|
||||
|
||||
fn main() {
|
||||
let x = Mos6502Cpu::default();
|
||||
|
||||
Reference in New Issue
Block a user