Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F375418
And_DFF_Or.v
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Size
309 B
Referenced Files
None
Subscribers
None
And_DFF_Or.v
View Options
// Verilog
// 3 inputs
// 1 outputs
// 1 DFF
module
dff
(
CK
,
Q
,
D
);
input
CK
,
D
;
output
Q
;
reg
Q
;
always
@
(
posedge
CK
)
Q
<=
D
;
endmodule
module
And_DFF_Or
(
in1
,
in2
,
in3
,
CK
,
out1
);
input
in1
,
in2
,
in3
,
CK
;
output
out1
;
wire
w1
,
w2
;
and
AND1
(
w1
,
in1
,
in2
);
dff
DFF1
(
CK
,
w2
,
w1
);
or
OR1
(
out1
,
w2
,
in3
);
endmodule
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Jun 7, 11:48 PM (11 h, 3 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
150007
Default Alt Text
And_DFF_Or.v (309 B)
Attached To
Mode
R231 SoC_I-Edge_yosys_nem_optimization
Attached
Detach File
Event Timeline
Log In to Comment