Added lvds and sampler

This commit is contained in:
Joppe Blondel
2025-10-08 18:01:03 +02:00
parent 324bb108e3
commit 3b04f3a6be
6 changed files with 188 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
`timescale 1ns/1ps
// =============================================================================
// LVDS comparator
// Instantiating a GW1 TLVDS_IBUF
// =============================================================================
module lvds_comparator(
input wire a,
input wire b,
output wire o
);
TLVDS_IBUF lvds_buf (
.O(o),
.I(a),
.IB(b)
);
endmodule