start writing ps7init extractor

This commit is contained in:
Robin Mueller
2025-10-08 12:00:52 +02:00
parent 93b5c9a4b4
commit a7f5c24418

View File

@@ -1,4 +1,4 @@
use std::path::Path;
use std::{fs::File, path::Path};
use clap::Parser as _;
@@ -17,4 +17,6 @@ fn main() {
eprintln!("File not found: {}", ps7init_tcl.display());
std::process::exit(1);
}
let file_path = "ddr_config.rs";
let file = File::create(file_path).expect("Failed to create file");
}