Page MenuHomePhorge

redundancy_check.v
No OneTemporary

Size
175 B
Referenced Files
None
Subscribers
None

redundancy_check.v

module redundancy_check (
input A, B, C, D,
output F
);
wire O, R;
assign O = A | B | C | D;
assign R = (A & B) | (C & D);
assign F = O & R;
endmodule

File Metadata

Mime Type
text/plain
Expires
Sun, Jun 8, 3:24 AM (1 d, 6 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
149909
Default Alt Text
redundancy_check.v (175 B)

Event Timeline