We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aebc9a7 commit cc1324eCopy full SHA for cc1324e
tests/ast_code_generator_test/test_ast_always.py
@@ -13,11 +13,11 @@
13
(
14
input CLK,
15
input RST,
16
- output [7:0] led
+ output [7 : 0] led
17
);
18
19
- reg [DATAWID - 1:0] count;
20
- assign led = count[DATAWID - 1:DATAWID - 8];
+ reg [DATAWID - 1 : 0] count;
+ assign led = count[DATAWID - 1 : DATAWID - 8];
21
22
always @(posedge CLK) begin
23
if(RST) begin
tests/ast_code_generator_test/test_ast_assign.py
@@ -10,7 +10,7 @@
10
11
12
assign led = 8;
0 commit comments