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

13 lines
337 B
Verilog

`timescale 1ns/1ps
// =============================================================================
// LVDS comparator
// Simple pass-though model
// =============================================================================
module lvds_comparator(
input wire a,
input wire b,
output wire o
);
assign o = a;
endmodule