3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Fix spacing

This commit is contained in:
Eddie Hung 2019-05-03 15:42:02 -07:00
parent 09841c2ac1
commit bfb8b3018b

View file

@ -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