Sign in
foss-fpga-tools
/
prjtrellis
/
7b80d66ab328bcbe44f94fb66939a3c333bc08f3
/
.
/
minitests
/
reg
/
ce.v
blob: bb4c05b3ad2db0db89ce64ea16afede775f76130 [
file
] [
log
] [
blame
]
module
top
(
input clk
,
input d
,
cen
,
output reg q
);
always
@(
posedge clk
)
if
(
cen
)
q
<=
d
;
endmodule