diff options
| author | Loic Guegan <loic.guegan@mailbox.org> | 2023-12-25 17:59:22 +0100 |
|---|---|---|
| committer | Loic Guegan <loic.guegan@mailbox.org> | 2023-12-25 17:59:22 +0100 |
| commit | 90c372fc35f1b66cb54a486486ca8ae9b787a2d8 (patch) | |
| tree | 4fb135e1c04acbdaa0038fce9ffbc5ec2f8b5b12 | |
| parent | 7652bcb6c725ac6e5b9cc6d6b458d1a282e6d0ca (diff) | |
Minor changes
| -rw-r--r-- | src/vcpu.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -247,13 +247,11 @@ void VCPUExecute(){ break; case 0x55: - MemStore(State.V,16,State.I); - State.I=State.I + State.X + 1; + MemStore(State.V,State.X+1,State.I); break; case 0x65: - MemLoad(State.V,16,State.I); - State.I=State.I + State.X + 1; + MemLoad(State.V,State.X+1,State.I); break; } |
