reportWaveforms format spec

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2022-11-02 19:30:06 -07:00
parent 8ee32c91f8
commit 895ab26f6c
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ reportWaveforms(Vcd &vcd,
else {
// bus
string field;
stringPrint(field, "%-*llX", zoom, var_value.busValue());
stringPrint(field, "%-*" PRIX64, zoom, var_value.busValue());
line += field;
}
prev_var_value = var_value;