写一个去抖动的RTL代码
时间: 2023-02-19 21:15:08 浏览: 109
SD卡读写测试 rtl.zip
我可以为您编写一段RTL代码:
module my_dff (
input wire clk,
input wire d,
output reg q
);
always @(posedge clk)
begin
q <= d;
end
endmodule
阅读全文
SD卡读写测试 rtl.zip