2021-07-27 22:24:40 -04:00
|
|
|
//#############################################################################
|
|
|
|
//# Function: Negative edge-triggered static D-type flop-flop #
|
|
|
|
//# Copyright: OH Project Authors. ALl rights Reserved. #
|
|
|
|
//# License: MIT (see LICENSE file in OH repository) #
|
|
|
|
//#############################################################################
|
|
|
|
|
2021-07-27 22:55:45 -04:00
|
|
|
module asic_dffnq #(parameter PROP = "DEFAULT") (
|
2021-07-27 22:24:40 -04:00
|
|
|
input d,
|
|
|
|
input clk,
|
|
|
|
output reg q
|
|
|
|
);
|
|
|
|
|
|
|
|
always @ (negedge clk)
|
|
|
|
q <= d;
|
|
|
|
|
|
|
|
endmodule
|