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
iceberg/memory/registers/bit_reg.sv
T
2022-03-22 16:46:55 +01:00

14 lines
210 B
Systemverilog

import d_flipflop::*;
package bit_reg (
input in;
input load;
input clk;
output out;
output out_compl;
);
mux(tmp, in, out, load);
d_flipflop(out, out_compl, tmp, clk);
endpackage