Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4b4414e

Browse files
committedMay 2, 2017
removed spaces
1 parent af6aefc commit 4b4414e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/ast_code_generator_test/test_ast_embeddedcode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
always @(posedge CLK) begin
2222
if(RST) begin
2323
count <= 0;
24-
led <= 0;
24+
led <= 0;
2525
end else begin
2626
if(count == 1024 - 1) begin
2727
count <= 0;
@@ -49,7 +49,7 @@ def test():
4949
always @(posedge CLK) begin
5050
if(RST) begin
5151
count <= 0;
52-
led <= 0;
52+
led <= 0;
5353
end else begin
5454
if(count == 1024 - 1) begin
5555
count <= 0;

0 commit comments

Comments
 (0)
Please sign in to comment.