mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 17:31:40 +02:00
8 lines
128 B
Systemverilog
8 lines
128 B
Systemverilog
`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)
|