2016-03-23 02:46:10 -05:00
|
|
|
module GP_DFF(input D, CLK, output reg Q);
|
2016-03-23 02:12:54 -05:00
|
|
|
parameter [0:0] INIT = 1'bx;
|
|
|
|
initial Q = INIT;
|
2016-03-23 02:46:10 -05:00
|
|
|
always @(posedge CLK) begin
|
|
|
|
Q <= D;
|
|
|
|
end
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
module GP_DFFS(input D, CLK, nSET, output reg Q);
|
|
|
|
parameter [0:0] INIT = 1'bx;
|
|
|
|
initial Q = INIT;
|
|
|
|
always @(posedge CLK, negedge nSET) begin
|
|
|
|
if (!nSET)
|
2015-09-16 02:28:37 -05:00
|
|
|
Q <= 1'b1;
|
|
|
|
else
|
|
|
|
Q <= D;
|
|
|
|
end
|
|
|
|
endmodule
|
|
|
|
|
2016-03-23 02:46:10 -05:00
|
|
|
module GP_DFFR(input D, CLK, nRST, output reg Q);
|
|
|
|
parameter [0:0] INIT = 1'bx;
|
|
|
|
initial Q = INIT;
|
|
|
|
always @(posedge CLK, negedge nRST) begin
|
|
|
|
if (!nRST)
|
|
|
|
Q <= 1'b0;
|
|
|
|
else
|
|
|
|
Q <= D;
|
|
|
|
end
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
module GP_DFFSR(input D, CLK, nSR, output reg Q);
|
|
|
|
parameter [0:0] INIT = 1'bx;
|
|
|
|
parameter [0:0] SRMODE = 1'bx;
|
|
|
|
initial Q = INIT;
|
|
|
|
always @(posedge CLK, negedge nSR) begin
|
|
|
|
if (!nSR)
|
|
|
|
Q <= SRMODE;
|
|
|
|
else
|
|
|
|
Q <= D;
|
|
|
|
end
|
|
|
|
endmodule
|
|
|
|
|
2015-09-18 05:00:37 -05:00
|
|
|
module GP_2LUT(input IN0, IN1, output OUT);
|
2015-09-16 02:28:37 -05:00
|
|
|
parameter [3:0] INIT = 0;
|
|
|
|
assign OUT = INIT[{IN1, IN0}];
|
|
|
|
endmodule
|
|
|
|
|
2015-09-18 05:00:37 -05:00
|
|
|
module GP_3LUT(input IN0, IN1, IN2, output OUT);
|
2015-09-16 02:28:37 -05:00
|
|
|
parameter [7:0] INIT = 0;
|
|
|
|
assign OUT = INIT[{IN2, IN1, IN0}];
|
|
|
|
endmodule
|
|
|
|
|
2015-09-18 05:00:37 -05:00
|
|
|
module GP_4LUT(input IN0, IN1, IN2, IN3, output OUT);
|
2015-09-16 02:28:37 -05:00
|
|
|
parameter [15:0] INIT = 0;
|
|
|
|
assign OUT = INIT[{IN3, IN2, IN1, IN0}];
|
|
|
|
endmodule
|
2016-03-23 02:46:10 -05:00
|
|
|
|
2016-03-26 15:42:41 -05:00
|
|
|
module GP_VDD(output OUT);
|
2016-03-23 02:46:10 -05:00
|
|
|
assign OUT = 1;
|
|
|
|
endmodule
|
|
|
|
|
2016-03-26 15:42:41 -05:00
|
|
|
module GP_VSS(output OUT);
|
2016-03-23 02:46:10 -05:00
|
|
|
assign OUT = 0;
|
|
|
|
endmodule
|
2016-03-26 15:42:41 -05:00
|
|
|
|