mirror of https://github.com/zachjs/sv2v.git
8 lines
128 B
Plaintext
8 lines
128 B
Plaintext
|
|
`define TEST(str) initial \
|
||
|
|
$display("%s %b %c %c", str, str, str[0], str[3]);
|
||
|
|
`TEST(a)
|
||
|
|
`TEST(b)
|
||
|
|
`TEST(c)
|
||
|
|
`TEST(d)
|
||
|
|
`TEST(e)
|