mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-01 18:16:05 +02:00
parse alternate spacings of sense star
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
module top;
|
||||
`define TEST(sense) always sense $display(`"sense %b`", x);
|
||||
reg x, y;
|
||||
`TEST(@*)
|
||||
`TEST(@x)
|
||||
`TEST(@y)
|
||||
`TEST(@ ( * ))
|
||||
`TEST(@ ( *))
|
||||
`TEST(@ (* ))
|
||||
`TEST(@ (*))
|
||||
`TEST(@( * ))
|
||||
`TEST(@( *))
|
||||
`TEST(@(* ))
|
||||
`TEST(@(*))
|
||||
initial x = 1;
|
||||
endmodule
|
||||
Reference in New Issue
Block a user