URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [or1k_startup/] [backend/] [ACTEL/] [smartgen/] [flash/] [flash.v] - Rev 167
Go to most recent revision | Compare with Previous | Blame | View Log
`timescale 1 ns/100 ps // Version: 8.5 8.5.0.34 module flash(CLK,ADDR,DOUT); input CLK; input [6:0] ADDR; output [7:0] DOUT; wire U_7_PIN2; GND GND_1_net(.Y(U_7_PIN2)); UFROMH #( .MEMORYFILE("flash.mem"), .ACT_PROGFILE("flash.ufc") ) UFROM0(.CLK(CLK), .DO0(DOUT[0]), .DO1(DOUT[1]), .DO2( DOUT[2]), .DO3(DOUT[3]), .DO4(DOUT[4]), .DO5(DOUT[5]), .DO6(DOUT[6]), .DO7(DOUT[7]), .ADDR0(ADDR[0]), .ADDR1( ADDR[1]), .ADDR2(ADDR[2]), .ADDR3(ADDR[3]), .ADDR4( ADDR[4]), .ADDR5(ADDR[5]), .ADDR6(ADDR[6])); endmodule
Go to most recent revision | Compare with Previous | Blame | View Log