Added sampler and RC model

This commit is contained in:
Jojojoppe
2025-10-01 21:15:20 +02:00
parent ee58fccba4
commit e0151d093f
17 changed files with 319 additions and 13 deletions

24
HW/sigmadelta_sampler.v Normal file
View File

@@ -0,0 +1,24 @@
`timescale 1ns/1ps
module sigmadelta_sampler(
input wire clk,
input wire A,
input wire B,
output wire out
);
wire O;
reg out_r;
TLVDS_IBUF m_cmp(
.I(A),
.IB(B),
.O(O)
);
always @(posedge clk) begin
out_r = O;
end
assign out = out_r;
endmodule