Search
lxdream.org :: lxdream/src/sh4/sh4trans.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/sh4trans.c
changeset 527:14c9489f647e
prev430:467519b050f4
next559:06714bc64271
next586:2a3ba82cf243
author nkeynes
date Wed Nov 21 11:45:33 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Add config guard around GTK display device
file annotate diff log raw
1.1 --- a/src/sh4/sh4trans.c Mon Oct 08 12:09:06 2007 +0000
1.2 +++ b/src/sh4/sh4trans.c Wed Nov 21 11:45:33 2007 +0000
1.3 @@ -99,7 +99,7 @@
1.4 xlat_output = block->code + (xlat_output - oldstart);
1.5 eob = block->code + block->size;
1.6 }
1.7 - done = sh4_x86_translate_instruction( pc );
1.8 + done = sh4_translate_instruction( pc );
1.9 assert( xlat_output <= eob );
1.10 pc += 2;
1.11 if ( pc >= lastpc ) {
1.12 @@ -132,7 +132,7 @@
1.13
1.14 sh4_translate_begin_block(pc);
1.15
1.16 - while( (done = sh4_x86_translate_instruction( pc )) == 0 ) {
1.17 + while( (done = sh4_translate_instruction( pc )) == 0 ) {
1.18 assert( (eob - xlat_output) >= MAX_INSTRUCTION_SIZE );
1.19 pc += 2;
1.20 }
.