2019-03-02 15:52:56 +01:00
|
|
|
/*
|
|
|
|
(c) Raphaël Jacquot 2019
|
|
|
|
|
|
|
|
This file is part of hp_saturn.
|
|
|
|
|
|
|
|
hp_saturn is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
hp_saturn is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Foobar. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
`default_nettype none
|
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
`include "saturn_def_alu.v"
|
|
|
|
|
2019-03-02 15:52:56 +01:00
|
|
|
module saturn_inst_decoder (
|
|
|
|
i_clk,
|
2019-03-03 15:19:07 +01:00
|
|
|
i_clk_en,
|
2019-03-02 15:52:56 +01:00
|
|
|
i_reset,
|
|
|
|
i_phases,
|
|
|
|
i_phase,
|
|
|
|
i_cycle_ctr,
|
2019-03-03 15:19:07 +01:00
|
|
|
|
2019-03-02 15:52:56 +01:00
|
|
|
i_bus_busy,
|
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
i_nibble,
|
2019-03-03 09:33:42 +01:00
|
|
|
i_reg_p,
|
|
|
|
i_current_pc,
|
2019-03-02 19:40:31 +01:00
|
|
|
|
2019-03-03 13:34:00 +01:00
|
|
|
o_instr_pc,
|
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
o_alu_reg_dest,
|
|
|
|
o_alu_reg_src_1,
|
|
|
|
o_alu_reg_src_2,
|
2019-03-04 08:08:02 +01:00
|
|
|
o_alu_ptr_begin,
|
|
|
|
o_alu_ptr_end,
|
2019-03-02 19:40:31 +01:00
|
|
|
o_alu_imm_value,
|
|
|
|
o_alu_opcode,
|
|
|
|
|
2019-03-03 20:48:56 +01:00
|
|
|
o_jump_length,
|
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
o_instr_type,
|
2019-03-04 11:52:05 +01:00
|
|
|
o_push_pc,
|
2019-03-02 21:45:38 +01:00
|
|
|
o_instr_decoded,
|
2019-03-03 09:33:42 +01:00
|
|
|
o_instr_execute,
|
|
|
|
|
2019-03-03 22:38:56 +01:00
|
|
|
o_decoder_error,
|
2019-03-03 09:33:42 +01:00
|
|
|
/* debugger interface */
|
2019-03-02 21:45:38 +01:00
|
|
|
o_dbg_inst_addr
|
2019-03-02 15:52:56 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
input wire [0:0] i_clk;
|
2019-03-03 15:19:07 +01:00
|
|
|
input wire [0:0] i_clk_en;
|
2019-03-02 15:52:56 +01:00
|
|
|
input wire [0:0] i_reset;
|
|
|
|
input wire [3:0] i_phases;
|
|
|
|
input wire [1:0] i_phase;
|
|
|
|
input wire [31:0] i_cycle_ctr;
|
|
|
|
|
|
|
|
input wire [0:0] i_bus_busy;
|
|
|
|
|
|
|
|
input wire [3:0] i_nibble;
|
2019-03-03 09:33:42 +01:00
|
|
|
input wire [3:0] i_reg_p;
|
|
|
|
input wire [19:0] i_current_pc;
|
2019-03-02 15:52:56 +01:00
|
|
|
|
2019-03-03 13:34:00 +01:00
|
|
|
output reg [19:0] o_instr_pc;
|
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
output reg [4:0] o_alu_reg_dest;
|
|
|
|
output reg [4:0] o_alu_reg_src_1;
|
|
|
|
output reg [4:0] o_alu_reg_src_2;
|
2019-03-04 08:08:02 +01:00
|
|
|
output reg [3:0] o_alu_ptr_begin;
|
|
|
|
output reg [3:0] o_alu_ptr_end;
|
2019-03-02 19:40:31 +01:00
|
|
|
output reg [3:0] o_alu_imm_value;
|
|
|
|
output reg [4:0] o_alu_opcode;
|
|
|
|
|
2019-03-03 20:48:56 +01:00
|
|
|
output reg [2:0] o_jump_length;
|
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
output reg [3:0] o_instr_type;
|
2019-03-04 11:52:05 +01:00
|
|
|
output reg [0:0] o_push_pc;
|
2019-03-03 09:33:42 +01:00
|
|
|
/* instruction is fully decoded */
|
2019-03-02 19:40:31 +01:00
|
|
|
output reg [0:0] o_instr_decoded;
|
2019-03-03 09:33:42 +01:00
|
|
|
/* instruction is sufficiently decoded to start execution */
|
|
|
|
output reg [0:0] o_instr_execute;
|
|
|
|
|
2019-03-03 22:38:56 +01:00
|
|
|
output reg [0:0] o_decoder_error;
|
2019-03-03 09:33:42 +01:00
|
|
|
/*
|
|
|
|
* debugger interface
|
|
|
|
*/
|
|
|
|
/* address of the last instruction */
|
2019-03-02 21:45:38 +01:00
|
|
|
output reg [19:0] o_dbg_inst_addr;
|
2019-03-02 19:40:31 +01:00
|
|
|
|
2019-03-02 15:52:56 +01:00
|
|
|
/**************************************************************************************************
|
|
|
|
*
|
|
|
|
* sub-modules go here
|
|
|
|
*
|
|
|
|
*************************************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************************************
|
|
|
|
*
|
|
|
|
* the decoder module
|
|
|
|
*
|
|
|
|
*************************************************************************************************/
|
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
/*
|
|
|
|
* process state variables
|
|
|
|
*/
|
|
|
|
|
2019-03-03 09:33:42 +01:00
|
|
|
reg [0:0] just_reset;
|
2019-03-02 19:40:31 +01:00
|
|
|
reg [0:0] decode_started;
|
2019-03-02 15:52:56 +01:00
|
|
|
|
|
|
|
/*
|
2019-03-02 19:40:31 +01:00
|
|
|
* decoder block variables
|
|
|
|
*/
|
|
|
|
|
2019-03-04 10:53:37 +01:00
|
|
|
reg [0:0] block_0x;
|
2019-03-02 19:40:31 +01:00
|
|
|
reg [0:0] block_2x;
|
2019-03-04 13:28:08 +01:00
|
|
|
reg [0:0] block_3x;
|
2019-03-03 20:48:56 +01:00
|
|
|
reg [0:0] block_6x;
|
2019-03-04 08:08:02 +01:00
|
|
|
reg [0:0] block_8x;
|
2019-03-04 09:58:13 +01:00
|
|
|
reg [0:0] block_80x;
|
|
|
|
reg [0:0] block_80Cx;
|
2019-03-04 10:53:37 +01:00
|
|
|
reg [0:0] block_82x;
|
2019-03-04 08:08:02 +01:00
|
|
|
reg [0:0] block_84x_85x;
|
|
|
|
|
|
|
|
reg [0:0] block_JUMP;
|
2019-03-04 13:28:08 +01:00
|
|
|
reg [0:0] block_LOAD;
|
2019-03-03 20:48:56 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* temporary variables
|
|
|
|
*/
|
|
|
|
reg [2:0] jump_counter;
|
2019-03-04 13:28:08 +01:00
|
|
|
reg [3:0] load_counter;
|
|
|
|
reg [3:0] load_count;
|
2019-03-02 19:40:31 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* initialization
|
|
|
|
*/
|
|
|
|
|
|
|
|
initial begin
|
|
|
|
o_alu_reg_dest = `ALU_REG_NONE;
|
|
|
|
o_alu_reg_src_1 = `ALU_REG_NONE;
|
|
|
|
o_alu_reg_src_2 = `ALU_REG_NONE;
|
2019-03-04 08:08:02 +01:00
|
|
|
o_alu_ptr_begin = 4'h0;
|
|
|
|
o_alu_ptr_end = 4'h0;
|
2019-03-02 19:40:31 +01:00
|
|
|
o_alu_imm_value = 4'b0;
|
|
|
|
o_alu_opcode = `ALU_OP_NOP;
|
|
|
|
|
2019-03-02 21:45:38 +01:00
|
|
|
o_instr_type = 4'd15;
|
2019-03-04 11:52:05 +01:00
|
|
|
o_push_pc = 1'd0;
|
2019-03-02 19:40:31 +01:00
|
|
|
o_instr_decoded = 1'b0;
|
2019-03-03 09:33:42 +01:00
|
|
|
o_instr_execute = 1'b0;
|
|
|
|
|
|
|
|
/* debugger interface */
|
2019-03-02 21:45:38 +01:00
|
|
|
o_dbg_inst_addr = 20'b0;
|
2019-03-02 19:40:31 +01:00
|
|
|
|
2019-03-03 09:33:42 +01:00
|
|
|
/* internal registers */
|
|
|
|
just_reset = 1'b1;
|
2019-03-02 19:40:31 +01:00
|
|
|
decode_started = 1'b0;
|
|
|
|
|
2019-03-04 10:53:37 +01:00
|
|
|
block_0x = 1'b0;
|
2019-03-02 19:40:31 +01:00
|
|
|
block_2x = 1'b0;
|
2019-03-04 13:28:08 +01:00
|
|
|
block_3x = 1'b0;
|
2019-03-03 20:48:56 +01:00
|
|
|
block_6x = 1'b0;
|
2019-03-04 08:08:02 +01:00
|
|
|
block_8x = 1'b0;
|
2019-03-04 09:58:13 +01:00
|
|
|
block_80x = 1'b0;
|
|
|
|
block_80Cx = 1'b0;
|
2019-03-04 10:53:37 +01:00
|
|
|
block_82x = 1'b0;
|
2019-03-04 08:08:02 +01:00
|
|
|
block_84x_85x = 1'b0;
|
|
|
|
|
|
|
|
block_JUMP = 1'b0;
|
2019-03-04 13:28:08 +01:00
|
|
|
block_LOAD = 1'b0;
|
2019-03-03 20:48:56 +01:00
|
|
|
|
|
|
|
/* local variables */
|
|
|
|
jump_counter = 3'd0;
|
2019-03-04 13:28:08 +01:00
|
|
|
load_counter = 4'd0;
|
|
|
|
load_count = 4'd0;
|
2019-03-03 22:38:56 +01:00
|
|
|
|
|
|
|
/* last line of defense */
|
|
|
|
o_decoder_error = 1'b0;
|
2019-03-02 19:40:31 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
/****************************
|
|
|
|
*
|
2019-03-02 15:52:56 +01:00
|
|
|
* main process
|
2019-03-02 19:40:31 +01:00
|
|
|
*
|
2019-03-02 15:52:56 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
always @(posedge i_clk) begin
|
2019-03-02 19:40:31 +01:00
|
|
|
|
2019-03-02 15:52:56 +01:00
|
|
|
/*
|
|
|
|
* only do something when nothing is busy doing some other tasks
|
|
|
|
* either talking to the bus, or debugging something
|
|
|
|
*/
|
|
|
|
|
2019-03-03 15:19:07 +01:00
|
|
|
if (i_clk_en && i_bus_busy && i_phases[2] && just_reset) begin
|
2019-03-03 09:33:42 +01:00
|
|
|
// $display("DECODER %0d: [%d] dump registers right after reset", i_phase, i_cycle_ctr);
|
|
|
|
just_reset <= 1'b0;
|
|
|
|
o_instr_decoded <= 1'b1;
|
|
|
|
end
|
|
|
|
|
2019-03-03 15:19:07 +01:00
|
|
|
if (i_clk_en && !i_bus_busy) begin
|
2019-03-02 15:52:56 +01:00
|
|
|
|
2019-03-03 09:33:42 +01:00
|
|
|
if (i_phases[1] && !decode_started) begin
|
2019-03-03 13:34:00 +01:00
|
|
|
// $display("DECODER %0d: [%d] store current PC as instruction start %5h", i_phase, i_cycle_ctr, i_current_pc);
|
2019-03-03 20:48:56 +01:00
|
|
|
o_instr_pc <= i_current_pc;
|
|
|
|
/* set the instruction to NOP, to avoid any stray processes */
|
|
|
|
o_instr_type <= `INSTR_TYPE_NOP;
|
2019-03-03 09:33:42 +01:00
|
|
|
end
|
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
if (i_phases[2] && !decode_started) begin
|
2019-03-03 13:34:00 +01:00
|
|
|
$display("DECODER %0d: [%d] nb= %h - start instruction decoding", i_phase, i_cycle_ctr, i_nibble);
|
2019-03-03 09:33:42 +01:00
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
decode_started <= 1'b1;
|
|
|
|
case (i_nibble)
|
2019-03-04 10:53:37 +01:00
|
|
|
4'h0: block_0x <= 1'b1;
|
2019-03-02 19:40:31 +01:00
|
|
|
4'h2: block_2x <= 1'b1;
|
2019-03-04 13:28:08 +01:00
|
|
|
4'h3: block_3x <= 1'b1;
|
2019-03-03 20:48:56 +01:00
|
|
|
4'h6:
|
|
|
|
begin
|
|
|
|
o_instr_type <= `INSTR_TYPE_JUMP;
|
|
|
|
o_jump_length <= 3'd2;
|
|
|
|
jump_counter <= 3'd0;
|
|
|
|
o_instr_execute <= 1'b1;
|
|
|
|
block_6x <= 1'b1;
|
|
|
|
end
|
2019-03-04 08:08:02 +01:00
|
|
|
4'h8: block_8x <= 1'b1;
|
2019-03-03 22:38:56 +01:00
|
|
|
default:
|
|
|
|
begin
|
|
|
|
$display("invalid instruction");
|
|
|
|
o_decoder_error <= 1'b1;
|
|
|
|
end
|
2019-03-02 19:40:31 +01:00
|
|
|
endcase
|
|
|
|
end
|
|
|
|
|
|
|
|
if (i_phases[2] && decode_started) begin
|
2019-03-03 13:34:00 +01:00
|
|
|
$display("DECODER %0d: [%d] nb= %h - decoding", i_phase, i_cycle_ctr, i_nibble);
|
2019-03-02 19:40:31 +01:00
|
|
|
|
2019-03-04 10:53:37 +01:00
|
|
|
if (block_0x) begin
|
|
|
|
case (i_nibble)
|
|
|
|
4'h4, 4'h5:
|
|
|
|
begin
|
|
|
|
o_instr_type <= `INSTR_TYPE_SET_MODE;
|
|
|
|
o_alu_imm_value <= {3'b000, i_nibble[0]};
|
|
|
|
o_instr_decoded <= 1'b1;
|
|
|
|
o_instr_execute <= 1'b1;
|
|
|
|
decode_started <= 1'b0;
|
|
|
|
end
|
|
|
|
default:
|
|
|
|
begin
|
|
|
|
$display("DECODER %0d: [%d] block_0x %h", i_phase, i_cycle_ctr, i_nibble);
|
|
|
|
o_decoder_error <= 1'b1;
|
|
|
|
end
|
|
|
|
endcase
|
|
|
|
block_0x <= 1'b0;
|
|
|
|
end
|
|
|
|
|
2019-03-02 19:40:31 +01:00
|
|
|
if (block_2x) begin
|
|
|
|
o_alu_reg_dest <= `ALU_REG_P;
|
|
|
|
o_alu_reg_src_1 <= `ALU_REG_IMM;
|
|
|
|
o_alu_reg_src_2 <= `ALU_REG_NONE;
|
|
|
|
o_alu_imm_value <= i_nibble;
|
|
|
|
o_alu_opcode <= `ALU_OP_COPY;
|
|
|
|
o_instr_type <= `INSTR_TYPE_ALU;
|
|
|
|
o_instr_decoded <= 1'b1;
|
2019-03-03 09:33:42 +01:00
|
|
|
o_instr_execute <= 1'b1;
|
2019-03-02 19:40:31 +01:00
|
|
|
block_2x <= 1'b0;
|
|
|
|
decode_started <= 1'b0;
|
|
|
|
end
|
|
|
|
|
2019-03-04 13:28:08 +01:00
|
|
|
if (block_3x) begin
|
|
|
|
$display("DECODER %0d: [%d] LC %h", i_phase, i_cycle_ctr, i_nibble);
|
|
|
|
o_alu_reg_dest <= `ALU_REG_C;
|
|
|
|
o_alu_ptr_begin <= i_reg_p;
|
|
|
|
o_alu_ptr_end <= (i_reg_p + i_nibble) & 4'hF;
|
|
|
|
load_counter <= 4'h0;
|
|
|
|
load_count <= i_nibble;
|
|
|
|
o_instr_execute <= 1'b1;
|
|
|
|
block_LOAD <= 1'b1;
|
|
|
|
block_3x <= 1'b0;
|
|
|
|
end
|
|
|
|
|
2019-03-03 20:48:56 +01:00
|
|
|
if (block_6x) begin
|
|
|
|
// $display("DECODER %0d: [%d] GOTO %h", i_phase, i_cycle_ctr, i_nibble);
|
|
|
|
jump_counter <= jump_counter + 3'd1;
|
|
|
|
if (jump_counter == o_jump_length) begin
|
|
|
|
block_6x <= 1'b0;
|
|
|
|
o_instr_decoded <= 1'b1;
|
|
|
|
decode_started <= 1'b0;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-04 08:08:02 +01:00
|
|
|
if (block_8x) begin
|
|
|
|
case (i_nibble)
|
2019-03-04 09:58:13 +01:00
|
|
|
4'h0: block_80x <= 1'b1;
|
2019-03-04 10:53:37 +01:00
|
|
|
4'h2: block_82x <= 1'b1;
|
2019-03-04 11:52:05 +01:00
|
|
|
4'h4, 4'h5:
|
2019-03-04 08:08:02 +01:00
|
|
|
begin
|
|
|
|
o_alu_reg_dest <= `ALU_REG_ST;
|
|
|
|
o_alu_reg_src_1 <= `ALU_REG_IMM;
|
|
|
|
o_alu_reg_src_2 <= `ALU_REG_NONE;
|
|
|
|
o_alu_imm_value <= { 3'b000, i_nibble[0]};
|
|
|
|
o_alu_opcode <= `ALU_OP_COPY;
|
|
|
|
o_instr_type <= `INSTR_TYPE_ALU;
|
|
|
|
block_84x_85x <= 1'b1;
|
|
|
|
end
|
2019-03-04 11:52:05 +01:00
|
|
|
4'hD, 4'hF: /* GOVLNG or GOSBVL */
|
2019-03-04 08:08:02 +01:00
|
|
|
begin
|
|
|
|
o_instr_type <= `INSTR_TYPE_JUMP;
|
2019-03-04 11:52:05 +01:00
|
|
|
o_push_pc <= i_nibble[1];
|
2019-03-04 08:08:02 +01:00
|
|
|
o_jump_length <= 3'd4;
|
|
|
|
jump_counter <= 3'd0;
|
|
|
|
o_instr_execute <= 1'b1;
|
|
|
|
block_JUMP <= 1'b1;
|
|
|
|
end
|
|
|
|
default:
|
|
|
|
begin
|
|
|
|
$display("DECODER %0d: [%d] block_8x %h", i_phase, i_cycle_ctr, i_nibble);
|
|
|
|
o_decoder_error <= 1'b1;
|
|
|
|
end
|
|
|
|
endcase
|
|
|
|
block_8x <= 1'b0;
|
|
|
|
end
|
|
|
|
|
2019-03-04 09:58:13 +01:00
|
|
|
if (block_80x) begin
|
|
|
|
case (i_nibble)
|
2019-03-04 10:15:37 +01:00
|
|
|
4'hA: /* RESET */
|
|
|
|
begin
|
|
|
|
o_instr_type <= `INSTR_TYPE_RESET;
|
|
|
|
o_instr_decoded <= 1'b1;
|
|
|
|
o_instr_execute <= 1'b1;
|
|
|
|
decode_started <= 1'b0;
|
|
|
|
end
|
2019-03-04 09:58:13 +01:00
|
|
|
4'hC: block_80Cx <= 1'b1;
|
|
|
|
default:
|
|
|
|
begin
|
|
|
|
$display("DECODER %0d: [%d] block_80x %h", i_phase, i_cycle_ctr, i_nibble);
|
|
|
|
o_decoder_error <= 1'b1;
|
|
|
|
end
|
|
|
|
endcase
|
|
|
|
block_80x <= 1'b0;
|
|
|
|
end
|
|
|
|
|
|
|
|
if (block_80Cx) begin
|
|
|
|
$display("DECODER %0d: [%d] block_80Cx C=P %h", i_phase, i_cycle_ctr, i_nibble);
|
|
|
|
o_alu_reg_dest <= `ALU_REG_C;
|
|
|
|
o_alu_reg_src_1 <= `ALU_REG_P;
|
|
|
|
o_alu_reg_src_2 <= `ALU_REG_NONE;
|
|
|
|
o_alu_ptr_begin <= i_nibble;
|
|
|
|
o_alu_ptr_end <= i_nibble;
|
|
|
|
o_alu_opcode <= `ALU_OP_COPY;
|
|
|
|
o_instr_type <= `INSTR_TYPE_ALU;
|
|
|
|
o_instr_decoded <= 1'b1;
|
|
|
|
o_instr_execute <= 1'b1;
|
|
|
|
block_80Cx <= 1'b0;
|
|
|
|
decode_started <= 1'b0;
|
|
|
|
end
|
|
|
|
|
2019-03-04 10:53:37 +01:00
|
|
|
if (block_82x) begin
|
|
|
|
`ifdef SIM
|
|
|
|
$write("DECODER %0d: [%d] block_82x ", i_phase, i_cycle_ctr);
|
|
|
|
case (i_nibble)
|
|
|
|
4'h1: $display("XM=0");
|
|
|
|
4'h2: $display("SB=0");
|
|
|
|
4'h4: $display("SR=0");
|
|
|
|
4'h8: $display("MP=0");
|
|
|
|
4'hF: $display("CLRHST");
|
|
|
|
default: $display("CLRHST %h", i_nibble);
|
|
|
|
endcase
|
|
|
|
`endif
|
|
|
|
o_alu_reg_dest <= `ALU_REG_HST;
|
|
|
|
o_alu_reg_src_1 <= `ALU_REG_IMM;
|
|
|
|
o_alu_reg_src_2 <= `ALU_REG_NONE;
|
|
|
|
o_alu_imm_value <= i_nibble;
|
|
|
|
o_alu_opcode <= `ALU_OP_CLR_MASK;
|
|
|
|
o_instr_type <= `INSTR_TYPE_ALU;
|
|
|
|
o_instr_decoded <= 1'b1;
|
|
|
|
o_instr_execute <= 1'b1;
|
|
|
|
block_82x <= 1'b0;
|
|
|
|
decode_started <= 1'b0;
|
|
|
|
end
|
|
|
|
|
2019-03-04 08:08:02 +01:00
|
|
|
if (block_84x_85x) begin
|
|
|
|
o_alu_ptr_begin <= i_nibble;
|
|
|
|
o_alu_ptr_end <= i_nibble;
|
|
|
|
o_instr_decoded <= 1'b1;
|
|
|
|
o_instr_execute <= 1'b1;
|
|
|
|
decode_started <= 1'b0;
|
|
|
|
block_84x_85x <= 1'b0;
|
|
|
|
end
|
|
|
|
|
|
|
|
/* special cases */
|
|
|
|
|
|
|
|
if (block_JUMP) begin
|
|
|
|
jump_counter <= jump_counter + 3'd1;
|
|
|
|
if (jump_counter == o_jump_length) begin
|
|
|
|
block_JUMP <= 1'b0;
|
|
|
|
o_instr_decoded <= 1'b1;
|
|
|
|
decode_started <= 1'b0;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-04 13:28:08 +01:00
|
|
|
if (block_LOAD) begin
|
|
|
|
o_instr_type <= `INSTR_TYPE_LOAD;
|
|
|
|
o_alu_imm_value <= i_nibble;
|
|
|
|
load_counter <= load_counter + 4'd1;
|
|
|
|
if (load_counter == load_count) begin
|
|
|
|
block_LOAD <= 1'b0;
|
|
|
|
o_instr_decoded <= 1'b1;
|
|
|
|
decode_started <= 1'b0;
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
/* need to increment this at the same time the pointer is used */
|
|
|
|
if (i_phases[3] && block_LOAD && (o_instr_type == `INSTR_TYPE_LOAD)) begin
|
|
|
|
$display("DECODER %0d: [%d] load ptr_begin <= %0d", i_phase, i_cycle_ctr, (o_alu_ptr_begin + 4'd1) & 4'hF);
|
|
|
|
o_alu_ptr_begin <= (o_alu_ptr_begin + 4'd1) & 4'hF;
|
2019-03-02 15:52:56 +01:00
|
|
|
end
|
|
|
|
|
2019-03-03 22:38:56 +01:00
|
|
|
/* decoder cleanup only after the instruction is completely decoded and execution has started */
|
|
|
|
if (i_phases[3] && o_instr_decoded) begin
|
2019-03-03 09:33:42 +01:00
|
|
|
// $display("DECODER %0d: [%d] decoder cleanup", i_phase, i_cycle_ctr);
|
2019-03-02 19:40:31 +01:00
|
|
|
o_instr_decoded <= 1'b0;
|
2019-03-03 09:33:42 +01:00
|
|
|
o_instr_execute <= 1'b0;
|
2019-03-03 22:38:56 +01:00
|
|
|
o_instr_type <= `INSTR_TYPE_NONE;
|
2019-03-04 11:52:05 +01:00
|
|
|
o_push_pc <= 1'b0;
|
2019-03-02 15:52:56 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
if (i_reset) begin
|
|
|
|
/* stuff that needs reset */
|
2019-03-02 19:40:31 +01:00
|
|
|
o_alu_reg_dest <= `ALU_REG_NONE;
|
|
|
|
o_alu_reg_src_1 <= `ALU_REG_NONE;
|
|
|
|
o_alu_reg_src_2 <= `ALU_REG_NONE;
|
2019-03-04 08:08:02 +01:00
|
|
|
o_alu_ptr_begin <= 4'h0;
|
|
|
|
o_alu_ptr_end <= 4'h0;
|
2019-03-02 19:40:31 +01:00
|
|
|
o_alu_imm_value <= 4'b0;
|
|
|
|
o_alu_opcode <= `ALU_OP_NOP;
|
|
|
|
|
2019-03-02 21:45:38 +01:00
|
|
|
o_instr_type <= 4'd15;
|
2019-03-04 11:52:05 +01:00
|
|
|
o_push_pc <= 1'b0;
|
2019-03-02 19:40:31 +01:00
|
|
|
o_instr_decoded <= 1'b0;
|
2019-03-03 09:33:42 +01:00
|
|
|
o_instr_execute <= 1'b0;
|
|
|
|
|
|
|
|
/* debugger interface */
|
2019-03-02 21:45:38 +01:00
|
|
|
o_dbg_inst_addr <= 20'b0;
|
2019-03-02 19:40:31 +01:00
|
|
|
|
2019-03-03 09:33:42 +01:00
|
|
|
/* internal registers */
|
|
|
|
just_reset <= 1'b1;
|
2019-03-02 19:40:31 +01:00
|
|
|
decode_started <= 1'b0;
|
|
|
|
|
2019-03-04 10:53:37 +01:00
|
|
|
block_0x <= 1'b0;
|
2019-03-02 19:40:31 +01:00
|
|
|
block_2x <= 1'b0;
|
2019-03-04 13:28:08 +01:00
|
|
|
block_3x <= 1'b0;
|
2019-03-03 20:48:56 +01:00
|
|
|
block_6x <= 1'b0;
|
2019-03-04 08:08:02 +01:00
|
|
|
block_8x <= 1'b0;
|
2019-03-04 09:58:13 +01:00
|
|
|
block_80x <= 1'b0;
|
|
|
|
block_80Cx <= 1'b0;
|
2019-03-04 10:53:37 +01:00
|
|
|
block_82x <= 1'b0;
|
2019-03-04 08:08:02 +01:00
|
|
|
block_84x_85x <= 1'b0;
|
|
|
|
|
|
|
|
block_JUMP <= 1'b0;
|
2019-03-04 13:28:08 +01:00
|
|
|
block_LOAD <= 1'b0;
|
2019-03-03 20:48:56 +01:00
|
|
|
|
|
|
|
/* local variables */
|
|
|
|
jump_counter = 3'd0;
|
2019-03-04 13:28:08 +01:00
|
|
|
load_counter = 4'd0;
|
|
|
|
load_count = 4'd0;
|
2019-03-03 22:38:56 +01:00
|
|
|
|
|
|
|
/* invalid instruction */
|
|
|
|
o_decoder_error = 1'b0;
|
2019-03-02 15:52:56 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
endmodule
|