- fixed generic


git-svn-id: http://moon:8086/svn/vhdl/trunk@1360 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2016-12-21 20:36:09 +00:00
parent aefed52167
commit ab321735e8
+8
View File
@@ -35,6 +35,10 @@ END uart_wb;
ARCHITECTURE rtl OF uart_wb IS
COMPONENT uart
Generic
(
fifo_depth_bits : integer
);
Port
(
clk : in STD_LOGIC;
@@ -71,6 +75,10 @@ begin
ctrl.baudrate <= reg_uart_baud;
inst_uart : uart
GENERIC MAP
(
fifo_depth_bits => fifo_depth_bits
)
PORT MAP
(
clk => CLK_I,