Archived
1
0
This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-03-08 15:07:02 +01:00

9 lines
120 B
Systemverilog

package sr_flipflop (
output srq, srq_compl
input s, r
);
nand(q, s, q_compl);
nand(q_compl, r, q);
endpackage