Create UART and uart_wrapper
This commit is contained in:
@@ -7,6 +7,7 @@ module addr_decode
|
||||
output o_timer_cs,
|
||||
output o_multiplier_cs,
|
||||
output o_divider_cs,
|
||||
output o_uart_cs,
|
||||
output o_sdram_cs
|
||||
);
|
||||
|
||||
@@ -14,6 +15,7 @@ assign o_rom_cs = i_addr >= 16'hf000 && i_addr <= 16'hffff;
|
||||
assign o_timer_cs = i_addr >= 16'heff8 && i_addr <= 16'heffb;
|
||||
assign o_multiplier_cs = i_addr >= 16'heff0 && i_addr <= 16'heff7;
|
||||
assign o_divider_cs = i_addr >= 16'hefe7 && i_addr <= 16'hefef;
|
||||
assign o_uart_cs = i_addr >= 16'hefe5 && i_addr <= 16'hefe6;
|
||||
assign o_leds_cs = i_addr == 16'hefff;
|
||||
assign o_sdram_cs = i_addr < 16'h8000;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user