Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/vhdl/gs4510.vhdl
Original file line number Diff line number Diff line change
Expand Up @@ -8218,7 +8218,13 @@ begin
-- reg_q33 holds the q reg, no need to load anything
next_is_axyz32_instruction <= '0';
report "ExecuteQreg32: reg_q33 = $" & to_hstring(reg_q33) & ", reg_instruction = " & instruction'image(reg_instruction);
pc_inc := '1';
if fast_fetch_state = InstructionDecode then
pc_inc := '1';
else
report "not setting pc_inc, because fast_fetch_state /= InstructionDecode";
pc_inc := '0';
end if;
-- pc_inc := '1';
pc_dec := '0';
case reg_instruction is
when I_INC =>
Expand Down