Altera_Forum
Honored Contributor
15 years agonios top level ...
`define flash_word // use word mode of flash
`ifdef flash_word
wire flash_16bit_ip_a0;
assign oflash_byte_n = 1'b1; // flash word mode configuration
`else
assign oflash_byte_n = 1'b0; // flash byte mode configuration
`endif
assign oflash_rst_n = 1'b1; // flash reset
assign oflash_wp_n = 1'b1; // flash write protect/programming acceleration
assign odram1_clk = odram0_clk; //fishy
wire cpu_clk; what is the purpose for the `ifdef flash_word