mirror of
https://github.com/sxpert/hp-saturn
synced 2024-11-16 19:50:19 +01:00
33 lines
930 B
Verilog
33 lines
930 B
Verilog
/******************************************************************************
|
|
* 6xxx GOTO xxx
|
|
*
|
|
*
|
|
*/
|
|
|
|
`include "decstates.v"
|
|
`include "bus_commands.v"
|
|
|
|
`DEC_GOTO: begin
|
|
//$display("DEC_GOTO : nibble %h", nibble);
|
|
jump_base <= PC;
|
|
jump_offset <= 0;
|
|
t_cnt <= 2;
|
|
t_ctr <= 1;
|
|
jump_offset[3:0] <= nb_in;
|
|
decstate <= `DEC_GOTO_LOOP;
|
|
end
|
|
`DEC_GOTO_LOOP: begin
|
|
//$display("jump_base %h | t_cnt %d | t_ctr %d | jump_offset %h", jump_base, t_cnt, t_ctr, jump_offset);
|
|
jump_offset[t_ctr*4+:4] <= nb_in;
|
|
if (t_ctr == t_cnt) begin
|
|
new_PC <= jump_base + {8'h00, nb_in, jump_offset[7:0]};
|
|
next_cycle <= `BUSCMD_LOAD_PC;
|
|
decstate <= `DEC_START;
|
|
`ifdef SIM
|
|
$display("%5h GOTO\t%3h\t=> %05h",
|
|
inst_start_PC,
|
|
{nb_in, jump_offset[7:0]},
|
|
jump_base + {8'h00, nb_in, jump_offset[7:0]});
|
|
`endif
|
|
end else t_ctr <= t_ctr + 1;
|
|
end
|