Also cater for 16-bit addresses

This commit is contained in:
Pierre Pronchery 2015-09-05 03:02:54 +02:00
parent 5f49d177b3
commit 0616ecf113

View File

@ -99,6 +99,9 @@ static int _deasm_section(AsmCode * code, AsmSection * section)
case 20:
printf("\n%05lx:\n", section->base);
break;
case 16:
printf("\n%04lx:\n", section->base);
break;
case 32:
default:
printf("\n%08lx:\n", section->base);