Archived
1
0

created sr, jk and data flipflops

This commit is contained in:
Erick
2022-03-08 13:54:42 +01:00
parent a4c9507c3c
commit b5d5fb5a05
4 changed files with 41 additions and 13 deletions
+11
View File
@@ -0,0 +1,11 @@
'include "gates/nand16.v"
package sr_flipflop (
output [15:0]srq, [15:0]srq_compl
input [15:0]s, [15:0]r
);
nand16 nand0(q, s, q_compl);
nand16 nand1(q_compl, r, q);
endpackage