You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
341 B
Verilog
25 lines
341 B
Verilog
2 years ago
|
`timescale 1 ps / 1 ps
|
||
|
|
||
|
module FDPE (Q, C, CE, D, PRE);
|
||
|
|
||
|
parameter INIT = 1'b1;
|
||
|
|
||
|
output Q;
|
||
|
|
||
|
input C, CE, D, PRE;
|
||
|
|
||
|
wire Q;
|
||
|
reg q_out;
|
||
|
|
||
|
initial q_out = INIT;
|
||
|
|
||
|
assign Q = q_out;
|
||
|
|
||
|
always @(posedge C or posedge PRE)
|
||
|
if (PRE)
|
||
|
q_out <= 1;
|
||
|
else if (CE)
|
||
|
q_out <= D;
|
||
|
|
||
|
endmodule
|