diff options
author | Celeste <colean@colean.cc> | 2022-02-15 21:35:13 +0000 |
---|---|---|
committer | Celeste <colean@colean.cc> | 2022-02-15 21:35:13 +0000 |
commit | c131f7aa394ad6f11a3ce4415c3887c84e0146e7 (patch) | |
tree | 93cfe52c50f5aa1dc5a82ab785064de29ce53dfd | |
parent | ef41729efb989271c0d8002fcc2b5906f03e8958 (diff) |
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 1fcab06..b924125 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,11 +16,11 @@ fn main() { .expect("Registers file not read properly."); let sreg: Vec<&str> = lreg.split(",").collect(); let mut x = 0; - x = x + 1; for s in sreg { let c = s.replace("\n",""); let int: i32 = c.parse().unwrap(); registers[x] = int; + x = x + 1; } } @@ -60,8 +60,8 @@ fn main() { for x in registers { if x != 0 { println!("Register {}: {}", a, x); - a = a + 1; } + a = a + 1; } println!("Instruction Pointer: {}", i); println!("Program Step: {}", ii); |