⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oc8051_immediate_sel.v

📁 Verilog版的C51核(OC8051)
💻 V
字号:
//////////////////////////////////////////////////////////////////////
////                                                              ////
////  8051 immediate data select                                  ////
////                                                              ////
////  This file is part of the 8051 cores project                 ////
////  http://www.opencores.org/cores/8051/                        ////
////                                                              ////
////  Description                                                 ////
////   Multiplexer wiht whitch we select immediate data           ////
////   (byte 2, byte 3, program counter high or low)              ////
////                                                              ////
////  To Do:                                                      ////
////   set out1 and out2 to x when it should not be used          ////
////                                                              ////
////  Author(s):                                                  ////
////      - Simon Teran, simont@opencores.org                     ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
////                                                              ////
//// Copyright (C) 2000 Authors and OPENCORES.ORG                 ////
////                                                              ////
//// This source file may be used and distributed without         ////
//// restriction provided that this copyright statement is not    ////
//// removed from the file and that any derivative work contains  ////
//// the original copyright notice and the associated disclaimer. ////
////                                                              ////
//// This source file is free software; you can redistribute it   ////
//// and/or modify it under the terms of the GNU Lesser General   ////
//// Public License as published by the Free Software Foundation; ////
//// either version 2.1 of the License, or (at your option) any   ////
//// later version.                                               ////
////                                                              ////
//// This source 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 Lesser General Public License for more ////
//// details.                                                     ////
////                                                              ////
//// You should have received a copy of the GNU Lesser General    ////
//// Public License along with this source; if not, download it   ////
//// from http://www.opencores.org/lgpl.shtml                     ////
////                                                              ////
//////////////////////////////////////////////////////////////////////
//
// CVS Revision History
//
// $Log: oc8051_immediate_sel.v,v $// Revision 1.5  2002/09/30 17:33:59  simont// prepared header//
//

// synopsys translate_off
`include "oc8051_timescale.v"
// synopsys translate_on

`include "oc8051_defines.v"


module oc8051_immediate_sel (clk, rst, sel, op1, op2, op3, pch, pcl, out1, out2);
//
// clk          (in)
// rst          (in)
// sel          (in)  select (from decoder) [oc8051_decoder.imm_sel]
// op1          (in)  byte 1 [oc8051_op_select.op1_out]
// op2          (in)  byte 2 [oc8051_op_select.op2_out]
// op3          (in)  byte 3 [oc8051_op_select.op3_out]
// pch          (in)  pc high [oc8051_pc.pc_out[15:8] -r]
// pcl          (in)  pc low [oc8051_pc.pc_out[7:0] ]
// out1         (out) output to alu source select 1 [oc8051_alu_src1_sel.immediate]
// out2         (out) output to alu source select 2 [oc8051_alu_src2_sel.immediate]
//

input clk, rst;
input [2:0] sel; input [7:0] op1, op2, op3, pch, pcl;
output [7:0] out1, out2;
reg [7:0] out1, out2;

always @(posedge clk or posedge rst)
begin
  if (rst) begin
    out1 <= #1 8'h0;
    out2 <= #1 8'h0;
  end else
    case (sel)
      `OC8051_IDS_OP3: begin
        out1 <= #1 op3;
        out2 <= #1 op3;
      end
      `OC8051_IDS_PCH: begin
        out1 <= #1 pch;
        out2 <= #1 8'hx;
      end
      `OC8051_IDS_PCL: begin
        out1 <= #1 pcl;
        out2 <= #1 8'hx;
      end
      `OC8051_IDS_OP3_PCL: begin
        out1 <= #1 op3;
        out2 <= #1 pcl;
      end
      `OC8051_IDS_OP3_OP2: begin
        out1 <= #1 op3;
        out2 <= #1 op2;
      end
      `OC8051_IDS_OP2_PCL: begin
        out1 <= #1 op2;
        out2 <= #1 pcl;
      end
      `OC8051_IDS_OP1: begin
        out1 <= #1 op1;
        out2 <= #1 op1;
      end
      default: begin
        out1 <= #1 op2;
        out2 <= #1 op2;
      end
    endcase
end

endmodule

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -