mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Fix spacing
This commit is contained in:
parent
09841c2ac1
commit
bfb8b3018b
|
@ -14,15 +14,15 @@ module test (
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
module test2 (
|
module test2 (
|
||||||
input A, B,
|
input A, B,
|
||||||
output Q
|
output Q
|
||||||
);
|
);
|
||||||
xor (Q, A, B);
|
xor (Q, A, B);
|
||||||
specify
|
specify
|
||||||
//specparam T_rise = 1;
|
//specparam T_rise = 1;
|
||||||
//specparam T_fall = 2;
|
//specparam T_fall = 2;
|
||||||
`define T_rise 1
|
`define T_rise 1
|
||||||
`define T_fall 2
|
`define T_fall 2
|
||||||
(A => Q) = (`T_rise,`T_fall);
|
(A => Q) = (`T_rise,`T_fall);
|
||||||
endspecify
|
endspecify
|
||||||
endmodule
|
endmodule
|
||||||
|
|
Loading…
Reference in a new issue