aboutsummaryrefslogtreecommitdiff
path: root/tests/div/test.v
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-09-08 17:46:12 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-09-08 17:46:12 +0200
commitcd0421f0c30fcbe557c89f0fe7cd1b1e5ea42f9c (patch)
treefeb49818e92940cd20586dcb23951fe04e54a2f2 /tests/div/test.v
parentdfcd082cd2290fb39d8cb322f2ab70f0e8752ef7 (diff)
downloadAGH-engineering-thesis-cd0421f0c30fcbe557c89f0fe7cd1b1e5ea42f9c.tar.gz
AGH-engineering-thesis-cd0421f0c30fcbe557c89f0fe7cd1b1e5ea42f9c.zip
remove trailing whitespace
Diffstat (limited to 'tests/div/test.v')
-rw-r--r--tests/div/test.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/div/test.v b/tests/div/test.v
index f360ebd..a98f084 100644
--- a/tests/div/test.v
+++ b/tests/div/test.v
@@ -54,7 +54,7 @@ module div_test();
dividend <= 15;
divisor <= 3;
progress <= progress + 1;
- end else begin
+ end else begin
if (done) begin
if (dividend / divisor === quotient && dividend % divisor === remainder) begin
`DBG(("%0d/%0d computed as %0d r %0d", dividend, divisor, quotient, remainder));