quasar/design/gated_latch.sv

15 lines
246 B
Systemverilog
Raw Normal View History

2020-12-28 13:36:14 +08:00
module gated_latch
(
input logic SE, EN, CK,
output Q
);
logic en_ff;
logic enable;
assign enable = EN | SE;
always @(CK, enable) begin
if(!CK)
en_ff = enable;
end
assign Q = CK & en_ff;
endmodule