aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-11-22 12:37:57 -0800
committerEddie Hung <eddie@fpgeh.com>2019-11-22 12:37:57 -0800
commitc761fa49b73e9ad3680b05e89442adb6fb22b543 (patch)
treef8b62efedc50d2f0a08cd3c4c2d29c198d87d0f7 /tests
parent0ab1e496dc601f8e9d5efbcc5b2be7cf6b2d9673 (diff)
downloadyosys-c761fa49b73e9ad3680b05e89442adb6fb22b543.tar.gz
yosys-c761fa49b73e9ad3680b05e89442adb6fb22b543.tar.bz2
yosys-c761fa49b73e9ad3680b05e89442adb6fb22b543.zip
Missing endmodule
Diffstat (limited to 'tests')
-rw-r--r--tests/simple_abc9/abc9.v1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/simple_abc9/abc9.v b/tests/simple_abc9/abc9.v
index 596a52501..6bdd3bc32 100644
--- a/tests/simple_abc9/abc9.v
+++ b/tests/simple_abc9/abc9.v
@@ -288,3 +288,4 @@ endmodule
module abc9_test033(input clk, d, output reg q1, q2);
always @(posedge clk) q1 <= d;
always @(posedge clk) q2 <= q1;
+endmodule