Files
fpga_modem/rtl/arch/gw1/lvds_comparator.v
2025-10-08 18:01:03 +02:00

17 lines
403 B
Verilog

`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