diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-17 20:04:26 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-17 20:04:26 +0000 |
commit | 397e923f7f78e99bc547b0a730c225d78dfe878b (patch) | |
tree | a8f67e612f018e733354f4bcf58f0a64f1cc420b /target-sh4 | |
parent | 4dbed8972b14f7bae70b32632d2f5ed1635cba50 (diff) |
Remove debug output.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1990 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4')
-rw-r--r-- | target-sh4/op_helper.c | 4 | ||||
-rw-r--r-- | target-sh4/translate.c | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/target-sh4/op_helper.c b/target-sh4/op_helper.c index 1c63fe587b..f02fa588fc 100644 --- a/target-sh4/op_helper.c +++ b/target-sh4/op_helper.c @@ -135,7 +135,7 @@ void helper_div1_T0_T1(void) uint32_t tmp0, tmp2; uint8_t old_q, tmp1 = 0xff; - printf("div1 T0=0x%08x T1=0x%08x M=%d Q=%d T=%d\n", T0, T1, M, Q, T); + //printf("div1 T0=0x%08x T1=0x%08x M=%d Q=%d T=%d\n", T0, T1, M, Q, T); old_q = Q; if ((0x80000000 & T1) != 0) SETQ; @@ -234,7 +234,7 @@ void helper_div1_T0_T1(void) SETT; else CLRT; - printf("Output: T1=0x%08x M=%d Q=%d T=%d\n", T1, M, Q, T); + //printf("Output: T1=0x%08x M=%d Q=%d T=%d\n", T1, M, Q, T); } void helper_dmulsl_T0_T1() diff --git a/target-sh4/translate.c b/target-sh4/translate.c index 84deced19e..0dca45ee9c 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -247,7 +247,6 @@ void decode_opc(DisasContext * ctx) #endif switch (ctx->opcode) { case 0x0019: /* div0u */ - printf("div0u\n"); gen_op_div0u(); return; case 0x000b: /* rts */ @@ -509,7 +508,6 @@ void decode_opc(DisasContext * ctx) gen_op_cmp_str_T0_T1(); return; case 0x2007: /* div0s Rm,Rn */ - printf("div0s\n"); gen_op_movl_rN_T0(REG(B7_4)); gen_op_movl_rN_T1(REG(B11_8)); gen_op_div0s_T0_T1(); |