1
0
mirror of synced 2026-04-30 21:50:07 +00:00

Adding latch tests for shift&mask AST dynamic part-select enhancements

This commit is contained in:
diego
2020-06-09 15:17:01 -05:00
parent 5c426d2bff
commit 3c2a1171ff
18 changed files with 326 additions and 69 deletions

View File

@@ -1,8 +1,9 @@
`default_nettype none
module forloop_select_gate (clk, ctrl, din, en, dout);
input clk;
input [3:0] ctrl;
input [15:0] din;
input en;
input wire clk;
input wire [3:0] ctrl;
input wire [15:0] din;
input wire en;
output reg [15:0] dout;
reg [4:0] sel;
always @(posedge clk)