When disassembling, now prints ... instead of pages of whatever the
instruction for 0x0000 is.
This commit is contained in:
parent
357a1f38a5
commit
96d7950b55
1 changed files with 34 additions and 24 deletions
|
@ -261,7 +261,7 @@ bfd *abfd;
|
||||||
unsigned long m;
|
unsigned long m;
|
||||||
asection *section;
|
asection *section;
|
||||||
/* Replace symbol section relative values with abs values */
|
/* Replace symbol section relative values with abs values */
|
||||||
|
boolean done_dot = false;
|
||||||
|
|
||||||
for (i = 0; i < symcount; i++) {
|
for (i = 0; i < symcount; i++) {
|
||||||
if (syms[i]->section != (asection *)NULL) {
|
if (syms[i]->section != (asection *)NULL) {
|
||||||
|
@ -338,6 +338,16 @@ bfd *abfd;
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
while (i <section->size) {
|
while (i <section->size) {
|
||||||
|
if (data[i] ==0 && data[i+1] == 0 && data[i+2] == 0 &&
|
||||||
|
data[i+3] == 0) {
|
||||||
|
if (done_dot == false) {
|
||||||
|
printf("...\n");
|
||||||
|
done_dot=true;
|
||||||
|
}
|
||||||
|
i+=4;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
done_dot = false;
|
||||||
if (with_line_numbers) {
|
if (with_line_numbers) {
|
||||||
static prevline;
|
static prevline;
|
||||||
CONST char *filename;
|
CONST char *filename;
|
||||||
|
@ -364,7 +374,7 @@ bfd *abfd;
|
||||||
stdout);
|
stdout);
|
||||||
putchar ('\n') ;
|
putchar ('\n') ;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue