3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00
yosys/tests/verilog/delay_time_scale.ys
2022-02-14 15:58:31 +01:00

26 lines
315 B
Plaintext

logger -expect-no-warnings
read_verilog -sv <<EOT
module top;
wand x;
`define TEST(time_scale) if (1) assign #time_scale x = 1;
`TEST(1s)
`TEST(1ms)
`TEST(1us)
`TEST(1ns)
`TEST(1ps)
`TEST(1fs)
`TEST((1s))
`TEST(( 1s))
`TEST((1s ))
`TEST(( 1s ))
`TEST(1.0s)
`TEST(1.1s)
`TEST(1.0e-1s)
`TEST(1e-1s)
endmodule
EOT