mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Adding latch tests for shift&mask AST dynamic part-select enhancements
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
`default_nettype none
|
||||
module original_gate (clk, ctrl, din, sel, dout);
|
||||
input clk;
|
||||
input [4:0] ctrl;
|
||||
input [1:0] din;
|
||||
input [0:0] sel;
|
||||
input wire clk;
|
||||
input wire [4:0] ctrl;
|
||||
input wire [1:0] din;
|
||||
input wire [0:0] sel;
|
||||
output reg [31:0] dout;
|
||||
always @(posedge clk)
|
||||
case (({(ctrl)*(sel)})+(0))
|
||||
|
||||
Reference in New Issue
Block a user