Added lvds and sampler
This commit is contained in:
13
rtl/core/lvds_comparator.v
Normal file
13
rtl/core/lvds_comparator.v
Normal file
@@ -0,0 +1,13 @@
|
||||
`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
|
||||
Reference in New Issue
Block a user