set debug false

git-svn-id: https://mspsim.svn.sourceforge.net/svnroot/mspsim/mspsim@748 23d1a52b-0c3c-0410-b72d-8f29ab48fe35
This commit is contained in:
fros4943 2010-08-13 10:16:37 +00:00
parent f019553902
commit 4c9b00118e
1 changed files with 4 additions and 2 deletions

View File

@ -56,7 +56,7 @@ public class ELF {
private static final int EI_ENCODING = 5;
private static final int[] MAGIC = new int[] {0x7f, 'E', 'L', 'F'};
public static final boolean DEBUG = true;//false;
public static final boolean DEBUG = false;
boolean encMSB = true;
@ -282,7 +282,9 @@ public class ELF {
/* Find sections */
for (int i = 0, n = shnum; i < n; i++) {
String name = sections[i].getSectionName();
System.out.println("ELF-Section: " + name);
if (DEBUG) {
System.out.println("ELF-Section: " + name);
}
if (".stabstr".equals(name)) {
dbgStabStr = sections[i];
}