sv2v/test/core/string_byte_order.vh

8 lines
128 B
Plaintext
Raw Normal View History

2023-12-08 05:43:19 +01:00
`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)