projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09841c2
)
Fix spacing
author
Eddie Hung
<eddie@fpgeh.com>
Fri, 3 May 2019 22:42:02 +0000
(15:42 -0700)
committer
Eddie Hung
<eddie@fpgeh.com>
Fri, 3 May 2019 22:42:02 +0000
(15:42 -0700)
tests/various/specify.v
patch
|
blob
|
history
diff --git
a/tests/various/specify.v
b/tests/various/specify.v
index aea0d0fc51159929e85bab0555bd4926eae5c078..68d3e33fc140dbdfe9c91442912c6c156e474d4f 100644
(file)
--- 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