Fix incorrect format strings

This commit is contained in:
Johan Mattsson 2022-11-23 22:37:37 +01:00 committed by MITSUNARI Shigeo
parent 0ecef5c284
commit 1bfbd8c4dc
2 changed files with 5 additions and 5 deletions

View file

@ -199,7 +199,7 @@ int main(int argc, char *argv[])
quantize2(dest2, src, qTbl);
for (int i = 0; i < N; i++) {
if (dest[i] != dest2[i]) {
printf("err[%d] %d %d\n", i, dest[i], dest2[i]);
printf("err[%d] %u %u\n", i, dest[i], dest2[i]);
}
}

View file

@ -5,8 +5,8 @@
mem_ 4byte x 65536
4byte固定
16bit
4byte固定
16bit
R = A or B
vldiR, imm ; R = imm
@ -109,7 +109,7 @@ public:
reg[r] -= imm;
break;
case PUT:
printf("%c %8d(0x%08x)\n", 'A' + r, reg[r], reg[r]);
printf("%c %8u(0x%08x)\n", 'A' + r, reg[r], reg[r]);
break;
case JNZ:
if (reg[r] != 0) pc += static_cast<signed short>(imm);
@ -294,7 +294,7 @@ lp:
p = t;
n--;
if (n != 0) goto lp;
printf("c=%d(0x%08x)\n", c, c);
printf("c=%u(0x%08x)\n", c, c);
}
int main()