Include asm6f assembler in repo

This commit is contained in:
2025-12-07 11:36:11 -06:00
parent d97a8559ec
commit e31be8a7a1
2 changed files with 1 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ fn main() {
let file_name = file.file_name();
let file_name = file_name.to_str().unwrap();
if let Some(file_name) = file_name.strip_suffix(".asm") {
let mut proc = std::process::Command::new("/home/matthew/asm6f/asm6f")
let mut proc = std::process::Command::new("./asm6f")
.arg(file.file_name())
.arg(format!("{name}/{file_name}.nes"))
.current_dir("src/test_roms")