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

📄 oc8051_ram_sel.v

📁 8051 IP核VERILOG代码
💻 V
字号:
//////////////////////////////////////////////////////////////////////////                                                              ////////  8051 ram select                                             ////////                                                              ////////  This file is part of the 8051 cores project                 ////////  http://www.opencores.org/cores/8051/                        ////////                                                              ////////  Description                                                 ////////   Multiplexer wiht whitch we select data send to alu source  ////////   select.                                                    ////////                                                              ////////  To Do:                                                      ////////   nothing                                                    ////////                                                              ////////  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                     ////////                                                              ////////////////////////////////////////////////////////////////////////////// ver: 1//// synopsys translate_off`include "oc8051_timescale.v"// synopsys translate_on`include "oc8051_defines.v"module oc8051_ram_sel (addr, bit_in, in_ram, psw, acc, dptr_hi, port0, port1, port2, port3, sp, bit_out, out_data);// addr         address// bit_in       bit input (from ram)// in_ram       imput from ram// psw          program status word input// acc          accumulator input// dptr_hi      data pointer high bits input// port0, port1, port2, port3   ports input// sp			stack pointer// bit_out      bit output// out_data     data (byte) outputinput bit_in;input [7:0] addr, in_ram, psw, acc, dptr_hi, port0, port1, port2, port3, sp;output bit_out;output [7:0] out_data;reg bit_out;reg [7:0] out_data;////set output in case of address (byte)always @(addr or in_ram or psw or acc or dptr_hi or port0 or port1 or port2 or port3 or sp)begin  case (addr)    `OC8051_SFR_ACC: out_data = acc;    `OC8051_SFR_PSW: out_data = psw;    `OC8051_SFR_P0: out_data = port0;    `OC8051_SFR_P1: out_data = port1;    `OC8051_SFR_P2: out_data = port2;    `OC8051_SFR_P3: out_data = port3;    `OC8051_SFR_SP: out_data = sp;    `OC8051_SFR_DPTR_HI: out_data = dptr_hi;    default: out_data = in_ram;  endcaseend////set output in case of address (bit)always @(addr or bit_in or psw or acc or port0 or port1 or port2 or port3)begin  case (addr[7:3])    `OC8051_SFR_B_ACC: bit_out = acc[addr[2:0]];    `OC8051_SFR_B_PSW: bit_out = psw[addr[2:0]];    `OC8051_SFR_B_P0: bit_out = port0[addr[2:0]];    `OC8051_SFR_B_P1: bit_out = port1[addr[2:0]];    `OC8051_SFR_B_P2: bit_out = port2[addr[2:0]];    `OC8051_SFR_B_P3: bit_out = port3[addr[2:0]];    default: bit_out = bit_in;  endcaseendendmodule

⌨️ 快捷键说明

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