mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Simplified $fa undef model
This commit is contained in:
@@ -453,7 +453,7 @@ output [WIDTH-1:0] X, Y;
|
||||
wire [WIDTH-1:0] t1, t2, t3;
|
||||
|
||||
assign t1 = A ^ B, t2 = A & B, t3 = C & t1;
|
||||
assign Y = t1 ^ C, X = t2 | t3;
|
||||
assign Y = t1 ^ C, X = (t2 | t3) ^ (Y ^ Y);
|
||||
|
||||
endmodule
|
||||
|
||||
|
||||
Reference in New Issue
Block a user