fix djn bug

This commit is contained in:
Benji Dial 2023-05-29 19:59:18 -04:00
parent 78c40e1422
commit a40005c776

View file

@ -302,7 +302,7 @@ namespace lib94 {
add_read_instruction(a_instruction_writable); add_read_instruction(a_instruction_writable);
add_read_instruction(b_instruction_writable); add_read_instruction(b_instruction_writable);
add_written_instruction(b_instruction_writable); add_written_instruction(b_instruction_writable);
if (dest_in.dec_not_zero()) if (dest_out.dec_not_zero())
program_counter = (a_instruction_writable - core + LIB94_CORE_SIZE - 1) % LIB94_CORE_SIZE; program_counter = (a_instruction_writable - core + LIB94_CORE_SIZE - 1) % LIB94_CORE_SIZE;
return true; return true;
} }