Commit a993f050 authored by Christos Gentsos's avatar Christos Gentsos

wb_uart: tie unused signals to zero when not using virtual UART

When trying to compile for nanoXplore synthesis fails, complaining
about those signals -- although they're unused.
parent f73bc3d2
......@@ -287,6 +287,12 @@ begin -- syn
end generate gen_vuart;
dont_gen_vuart : if (not g_with_virtual_uart) generate
regs_in.host_rdr_data_i <= (others => '0');
regs_in.host_rdr_count_i <= (others => '0');
regs_in.host_rdr_rdy_i <= '0';
end generate dont_gen_vuart;
p_drive_rx_ready : process(clk_sys_i)
begin
if rising_edge(clk_sys_i) then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment