mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Added test cases
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
module aldffe( input [0:3] d, input [0:3] ad, input clk, aload, en, output reg [0:3] q );
|
||||
always @( posedge clk, posedge aload)
|
||||
if (aload)
|
||||
q <= ad;
|
||||
else
|
||||
if (en)
|
||||
q <= d;
|
||||
endmodule
|
||||
Reference in New Issue
Block a user