Search
lxdream.org :: lxdream/src/sh4/sh4trans.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/sh4trans.c
changeset 1003:7b2688cbbca3
prev991:60c7fab9c880
next1014:f5914b2fd0db
author nkeynes
date Fri Mar 27 06:13:34 2009 +0000 (15 years ago)
permissions -rw-r--r--
last change Revert change to xltcache and fix breakpoint precision correctly
file annotate diff log raw
1.1 --- a/src/sh4/sh4trans.c Wed Mar 04 23:12:21 2009 +0000
1.2 +++ b/src/sh4/sh4trans.c Fri Mar 27 06:13:34 2009 +0000
1.3 @@ -109,13 +109,6 @@
1.4 sh4_translate_begin_block(pc);
1.5
1.6 do {
1.7 - /* check for breakpoints at this pc */
1.8 - for( i=0; i<sh4_breakpoint_count; i++ ) {
1.9 - if( sh4_breakpoints[i].address == pc ) {
1.10 - sh4_translate_emit_breakpoint(pc);
1.11 - break;
1.12 - }
1.13 - }
1.14 if( eob - xlat_output < MAX_INSTRUCTION_SIZE ) {
1.15 uint8_t *oldstart = xlat_current_block->code;
1.16 xlat_current_block = xlat_extend_block( xlat_output - oldstart + MAX_INSTRUCTION_SIZE );
.