From a110f7c042cc6da5a78aa9bdf4b741f836661e59 Mon Sep 17 00:00:00 2001 From: Yuri Tatishchev Date: Sat, 19 Oct 2024 15:54:51 -0700 Subject: [PATCH] (WIP): REG1 --- logic.v | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/logic.v b/logic.v index 6c9b251..8a667e4 100644 --- a/logic.v +++ b/logic.v @@ -56,7 +56,10 @@ input D, C, L; input nP, nR; output Q,Qbar; -// TBD +wire D_out; +MUX1_2x1 data(D_out, Q, D, L); + +D_FF dff(Q, Qbar, D_out, C, nP, nR); endmodule