mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-04-24 19:00:23 +08:00
insnsb.c: use 5 digits for index, not 4
We already have indexes up to 9500, so use 5 digits instead of 4.
This commit is contained in:
parent
ff3b57c253
commit
0a4d23219e
2
insns.pl
2
insns.pl
@ -113,7 +113,7 @@ if ( !defined($output) || $output eq 'b') {
|
||||
|
||||
$p = 0;
|
||||
foreach $bl (@bytecode_array) {
|
||||
printf B " /* %4d */ ", $p;
|
||||
printf B " /* %5d */ ", $p;
|
||||
foreach $d (@$bl) {
|
||||
printf B "%#o,", $d;
|
||||
$p++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user