Line 87... |
Line 87... |
wire [(AW-1):0] o_dcd_branch_pc;
|
wire [(AW-1):0] o_dcd_branch_pc;
|
reg o_dcdI, o_dcdIz;
|
reg o_dcdI, o_dcdIz;
|
|
|
|
|
wire [4:0] w_op;
|
wire [4:0] w_op;
|
wire w_ldi, w_mov, w_cmptst, w_ldixx, w_ALU;
|
wire w_ldi, w_mov, w_cmptst, w_ldixx, w_ALU, w_brev;
|
wire [4:0] w_dcdR, w_dcdB, w_dcdA;
|
wire [4:0] w_dcdR, w_dcdB, w_dcdA;
|
wire w_dcdR_pc, w_dcdR_cc;
|
wire w_dcdR_pc, w_dcdR_cc;
|
wire w_dcdA_pc, w_dcdA_cc;
|
wire w_dcdA_pc, w_dcdA_cc;
|
wire w_dcdB_pc, w_dcdB_cc;
|
wire w_dcdB_pc, w_dcdB_cc;
|
wire [3:0] w_cond;
|
wire [3:0] w_cond;
|
Line 121... |
Line 121... |
|
|
|
|
assign w_op= iword[26:22];
|
assign w_op= iword[26:22];
|
assign w_mov = (w_op == 5'h0f);
|
assign w_mov = (w_op == 5'h0f);
|
assign w_ldi = (w_op[4:1] == 4'hb);
|
assign w_ldi = (w_op[4:1] == 4'hb);
|
|
assign w_brev = (w_op == 5'hc);
|
assign w_cmptst = (w_op[4:1] == 4'h8);
|
assign w_cmptst = (w_op[4:1] == 4'h8);
|
assign w_ldixx = (w_op[4:1] == 4'h4);
|
assign w_ldixx = (w_op[4:1] == 4'h4);
|
assign w_ALU = (~w_op[4]);
|
assign w_ALU = (~w_op[4]);
|
|
|
// 4 LUTs
|
// 4 LUTs
|
Line 187... |
Line 188... |
//
|
//
|
// This'd be 4 LUTs, save that we have the carve out for NOOPs
|
// This'd be 4 LUTs, save that we have the carve out for NOOPs
|
// and writes to the PC/CC register(s).
|
// and writes to the PC/CC register(s).
|
assign w_wF = (w_cmptst)
|
assign w_wF = (w_cmptst)
|
||((w_cond[3])&&((w_dcdFP)||(w_dcdDV)
|
||((w_cond[3])&&((w_dcdFP)||(w_dcdDV)
|
||((w_ALU)&&(~w_mov)&&(~w_ldixx)
|
||((w_ALU)&&(~w_mov)&&(~w_ldixx)&&(~w_brev)
|
&&(iword[30:28] != 3'h7))));
|
&&(iword[30:28] != 3'h7))));
|
|
|
// Bottom 13 bits: no LUT's
|
// Bottom 13 bits: no LUT's
|
// w_dcd[12: 0] -- no LUTs
|
// w_dcd[12: 0] -- no LUTs
|
// w_dcd[ 13] -- 2 LUTs
|
// w_dcd[ 13] -- 2 LUTs
|
Line 414... |
Line 415... |
always @(posedge i_clk)
|
always @(posedge i_clk)
|
if (i_ce)
|
if (i_ce)
|
o_pipe <= (r_valid)&&(i_pf_valid)&&(~i_instruction[31])
|
o_pipe <= (r_valid)&&(i_pf_valid)&&(~i_instruction[31])
|
&&(w_dcdM)&&(o_M)&&(o_op[0] ==i_instruction[22])
|
&&(w_dcdM)&&(o_M)&&(o_op[0] ==i_instruction[22])
|
&&(i_instruction[17:14] == o_dcdB[3:0])
|
&&(i_instruction[17:14] == o_dcdB[3:0])
|
|
&&(i_instruction[17:14] != o_dcdA[3:0])
|
&&(i_gie == o_gie)
|
&&(i_gie == o_gie)
|
&&((i_instruction[21:19]==o_cond[2:0])
|
&&((i_instruction[21:19]==o_cond[2:0])
|
||(o_cond[2:0] == 3'h0))
|
||(o_cond[2:0] == 3'h0))
|
&&((i_instruction[13:0]==r_I[13:0])
|
&&((i_instruction[13:0]==r_I[13:0])
|
||({1'b0, i_instruction[13:0]}==(r_I[13:0]+14'h1)));
|
||({1'b0, i_instruction[13:0]}==(r_I[13:0]+14'h1)));
|