URL
https://opencores.org/ocsvn/mips789/mips789/trunk
Subversion Repositories mips789
[/] [mips789/] [branches/] [avendor/] [verilog/] [simulate/] [mips_led.v] - Rev 59
Go to most recent revision | Compare with Previous | Blame | View Log
//----------------------------------------------------------------------------- // // Title : No Title // Design : sgfADFLJdsjoQEW // Author : YlmF // Company : WwW.YlmF.CoM // //----------------------------------------------------------------------------- // // File : d:\my_designs\asji_saf\sgfADFLJdsjoQEW\compile\mips_led.v // Generated : Sat Aug 30 21:05:29 2008 // From : d:\my_designs\asji_saf\sgfADFLJdsjoQEW\src\mips_led.BDE // By : Bde2Verilog ver. 2.01 // //----------------------------------------------------------------------------- // // Description : // //----------------------------------------------------------------------------- `ifdef _VCP `else `define library `endif // ---------- Design Unit Header ---------- // `timescale 1ps / 1ps module mips_led (clk,key2,rst,cop_data,irq_addr,seg7led1,seg7led2) ; // ------------ Port declarations --------- // input clk; wire clk; input key2; wire key2; input rst; wire rst; input [31:0] cop_data; wire [31:0] cop_data; input [31:0] irq_addr; wire [31:0] irq_addr; output [6:0] seg7led1; wire [6:0] seg7led1; output [6:0] seg7led2; wire [6:0] seg7led2; // ----------- Signal declarations -------- // wire [31:0] cop_addr; wire [3:0] cop_mem_ctl; wire [31:0] data2cop; wire [31:0] data2core; wire [31:0] data2mem; wire [31:0] ins2core; wire [31:0] mem_Addr; wire [31:0] pc; wire [3:0] wr_en; // -------- Component instantiations -------// mips_core1 mips_core_ ( .clk(clk), .cop_addr_o(cop_addr), .cop_data_o(data2cop), .cop_dout(cop_data), .cop_mem_ctl_o(cop_mem_ctl), .irq_addr(irq_addr), .irq_i(key2), .rst(rst), .zz_addr_o(mem_Addr), .zz_din(data2core), .zz_dout(data2mem), .zz_ins_i(ins2core), .zz_pc_o(pc), .zz_wr_en_o(wr_en) ); mem_array ram_4k ( .clk(clk), .din(data2mem), .dout(data2core), .ins_o(ins2core), .pc_i(pc), .rd_addr_i(mem_Addr), .wr_addr_i(mem_Addr), .wren(wr_en) ); mips_seg7led seg7led ( .addr_i(cop_addr), .clk(clk), .din(data2cop), .dmem_ctl_i(cop_mem_ctl), .rst(rst), .seg7led1(seg7led1), .seg7led2(seg7led2) ); endmodule
Go to most recent revision | Compare with Previous | Blame | View Log