Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • soclabs/socdebug_tech
1 result
Show changes
Commits on Source (1)
......@@ -449,7 +449,7 @@ assign write_enable10 = write_enable & (PADDR[11:2] == 10'h004);
rx_buf_full <= nxt_rx_buf_full;
end
assign RX_READY_o = !rx_buf_full;
assign RX_READY_o = reg_ctrl[1] & !rx_buf_full;
// Registering receive data buffer
always @(posedge PCLK or negedge PRESETn)
......