aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/various/specify.v12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/various/specify.v b/tests/various/specify.v
index aea0d0fc5..68d3e33fc 100644
--- a/tests/various/specify.v
+++ b/tests/various/specify.v
@@ -14,15 +14,15 @@ module test (
endmodule
module test2 (
- input A, B,
+ input A, B,
output Q
);
- xor (Q, A, B);
+ xor (Q, A, B);
specify
//specparam T_rise = 1;
- //specparam T_fall = 2;
- `define T_rise 1
- `define T_fall 2
- (A => Q) = (`T_rise,`T_fall);
+ //specparam T_fall = 2;
+ `define T_rise 1
+ `define T_fall 2
+ (A => Q) = (`T_rise,`T_fall);
endspecify
endmodule