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/op_helper.c | |
parent | 4dbed8972b14f7bae70b32632d2f5ed1635cba50 (diff) | |
download | qemu-397e923f7f78e99bc547b0a730c225d78dfe878b.tar.gz qemu-397e923f7f78e99bc547b0a730c225d78dfe878b.tar.bz2 qemu-397e923f7f78e99bc547b0a730c225d78dfe878b.zip |
Remove debug output.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1990 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4/op_helper.c')
-rw-r--r-- | target-sh4/op_helper.c | 4 |
1 files changed, 2 insertions, 2 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() |