设计与验证verilog hdl

源代码在线查看: stm.v

软件大小: 1828 K
上传用户: NJ_WK
关键词: verilog hdl
下载地址: 免注册下载 普通下载 VIP

相关代码

				// - - - - - - - - - - - - - - - - - - - - - - - - - - - -
				//            Verilog Design & Verification
				//            EDA Pioneer
				// - - - - - - - - - - - - - - - - - - - - - - - - - - - -
				`timescale 1ns/100ps
				module STM(
				    Clock ,
				    Mpi_enb,
				    Rw,
				    Data_in,
				    Data_out,
				    Addr_in
				    );
				input    Clock ;
				input    Mpi_enb;
				input    Rw;
				input [7:0]   Data_in;
				output [7:0]   Data_out;
				input [5:0]   Addr_in ;
				
				wire Ram_enb;
				wire [7:0] Data_from_ram;
				assign Ram_enb =  Mpi_enb & (~Addr_in[5]);//0,00000~0,11111
				SPRAM	u_SPRAM (
					.address ( Addr_in[4:0] ),
					.clken   ( Ram_enb ),
					.clock   ( Clock ),
					.data    ( Data_in ),
					.wren    ( ~Rw ),
					.q       ( Data_from_ram )
					);    
				
				reg [7:0] MyRegister [0:15] ;  //1,00000~1,01111
				always @( posedge Clock )
				begin
				    if ( Mpi_enb & Addr_in[5] & (~Rw) )
				        MyRegister[Addr_in[3:0]] 				end
				
				assign Data_out = (Addr_in[5])? MyRegister[Addr_in[3:0]] : Data_from_ram ;
				    
				endmodule			

相关资源