mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Simplified $fa undef model
This commit is contained in:
parent
6dc07eb1f2
commit
fcb46138ce
3 changed files with 6 additions and 15 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue