sv2v/test/core/string_byte_order.sv

9 lines
213 B
Systemverilog
Raw Normal View History

2023-12-08 05:43:19 +01:00
module top;
localparam a = "abcd";
localparam b = 64'("abcd");
logic [3:0][7:0] c = "abcd";
integer d = b; // truncate
localparam e = 32'("abcd");
`include "string_byte_order.vh"
endmodule