`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