3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 00:55:32 +00:00

Merge remote-tracking branch 'origin/master' into xaig

This commit is contained in:
Eddie Hung 2019-04-20 12:23:49 -07:00
commit caec7f9d2c
18 changed files with 194 additions and 58 deletions

2
tests/aiger/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.log
*.out

6
tests/simple/retime.v Normal file
View file

@ -0,0 +1,6 @@
module retime_test(input clk, input [7:0] a, output z);
reg [7:0] ff = 8'hF5;
always @(posedge clk)
ff <= {ff[6:0], ^a};
assign z = ff[7];
endmodule