From d5ad463a3c1b43d508fb28b23509e7fe2539d334 Mon Sep 17 00:00:00 2001 From: Oxore Date: Mon, 18 Nov 2019 02:41:34 +0300 Subject: Implement LUT for opcode to Op translation --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index dc2f600..8eb1648 100644 --- a/src/main.rs +++ b/src/main.rs @@ -50,7 +50,8 @@ fn main() { println!("Please, specify ihex file"); return; } - let data = fs::read_to_string(&args[1]).unwrap_or_else(|_| panic!("Unable to read file {}", &args[1])); + let data = + fs::read_to_string(&args[1]).unwrap_or_else(|_| panic!("Unable to read file {}", &args[1])); let asyncpair = Arc::new((Mutex::new(false), Condvar::new())); let asyncpair2 = asyncpair.clone(); -- cgit v1.2.3