-debugger: disabled debug prints

git-svn-id: http://moon:8086/svn/mips@79 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
2017-01-14 14:29:22 +00:00
parent 6e59fe2263
commit 2bc3668020
+1 -3
View File
@@ -37,7 +37,7 @@ extern int tdisasm(char *buffer, unsigned address, unsigned iword, unsigned char
#define BP_MGMT_RU(id) (((BP_MGMT_BASE_RU + id) << 6) | 0x0D) #define BP_MGMT_RU(id) (((BP_MGMT_BASE_RU + id) << 6) | 0x0D)
static char g_buf[80]; static char g_buf[80];
static int DEBUG_PRINT = 1; static int DEBUG_PRINT = 0;
enum enum
{ {
@@ -210,8 +210,6 @@ void singlestep(struct xcptcontext * xcp, uint32_t *pAddr_curr, uint32_t is_bran
instr_info_t info; instr_info_t info;
int set_break_at_jump_target = 0; int set_break_at_jump_target = 0;
dbg_puts_d("is_branch_shadow = ");dbg_print_word_d((long)is_branch_shadow);dbg_puts_d("\n\r");
pAddr_prev = pAddr_curr - 1; pAddr_prev = pAddr_curr - 1;
pAddr_next = pAddr_curr + 1; pAddr_next = pAddr_curr + 1;