-
Notifications
You must be signed in to change notification settings - Fork 71
Pepijn de Vos edited this page Nov 17, 2024
·
5 revisions
The Data Latch (DL) primitive has a control signal G that is active-high. The D input stores data, which is then output as Q when G is high, otherwise retaining its initial value of 0.
This device is not yet supported in Apicula
Port | Size | Direction |
---|---|---|
D | 1 | input |
G | 1 | input |
Q | 1 | output |
Parameter | Default Value |
---|---|
INIT | 0 (0b0) |
DL #(
.INIT(INIT)
) dl_inst (
.D(D),
.G(G),
.Q(Q)
);