L
lingwitt
Guest
Consider the following:
module test;
initial
begin
$display("%s", 16'h42_4D);
$display("%h", "BM");
$finish;
end
endmodule
Output on any system:
BM
424d
Thus, the most significant byte is always the first byte.
Does it state this somewhere officially?
module test;
initial
begin
$display("%s", 16'h42_4D);
$display("%h", "BM");
$finish;
end
endmodule
Output on any system:
BM
424d
Thus, the most significant byte is always the first byte.
Does it state this somewhere officially?