Add null mapper
This commit is contained in:
@@ -9,6 +9,7 @@ module addr_decode
|
||||
output o_divider_cs,
|
||||
output o_uart_cs,
|
||||
output o_spi_cs,
|
||||
output o_mapper_cs,
|
||||
output o_sdram_cs
|
||||
);
|
||||
|
||||
@@ -18,6 +19,7 @@ assign o_multiplier_cs = i_addr >= 16'heff0 && i_addr <= 16'heff7;
|
||||
assign o_divider_cs = i_addr >= 16'hefe8 && i_addr <= 16'hefef;
|
||||
assign o_uart_cs = i_addr >= 16'hefe6 && i_addr <= 16'hefe7;
|
||||
assign o_spi_cs = i_addr >= 16'hefd8 && i_addr <= 16'hefdb;
|
||||
assign o_mapper_cs = i_addr >= 16'hefb7 && i_addr <= 16'hefd7;
|
||||
assign o_leds_cs = i_addr == 16'hefff;
|
||||
assign o_sdram_cs = i_addr < 16'he000;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user