verilog實例化時端口信號傳遞規則

module hello_top( input clk_t, input rst_t, input rxd_t, output txd_t ); uart_send u_uart_send( .clk (clk_t), .rst (rst_t), .txd (txd_t) ); endmodule module uart_send( input clk, input rst, output txd
相關文章
相關標籤/搜索