From: Pokemonhacker <pok...@us...> - 2006-01-06 19:40:17
|
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2024 Modified Files: armdis.cpp Log Message: - Fixed ldrh/ldsb mixed dissassembly (sourceforge's bug report #1398640). Thanks devZZ. Index: armdis.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/armdis.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** armdis.cpp 13 May 2004 15:06:45 -0000 1.4 --- armdis.cpp 6 Jan 2006 19:40:08 -0000 1.5 *************** *** 1,5 **** // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2004 Forgotten and the VBA development team // This program is free software; you can redistribute it and/or modify --- 1,5 ---- // VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator. // Copyright (C) 1999-2003 Forgotten ! // Copyright (C) 2005 Forgotten and the VBA development team // This program is free software; you can redistribute it and/or modify *************** *** 118,123 **** // Format 8 {0xfe00, 0x5200, "strh %r0, [%r3, %r6]"}, ! {0xfe00, 0x5600, "ldrh %r0, [%r3, %r6]"}, ! {0xfe00, 0x5a00, "ldsb %r0, [%r3, %r6]"}, {0xfe00, 0x5e00, "ldsh %r0, [%r3, %r6]"}, // Format 9 --- 118,123 ---- // Format 8 {0xfe00, 0x5200, "strh %r0, [%r3, %r6]"}, ! {0xfe00, 0x5600, "ldsb %r0, [%r3, %r6]"}, ! {0xfe00, 0x5a00, "ldrh %r0, [%r3, %r6]"}, {0xfe00, 0x5e00, "ldsh %r0, [%r3, %r6]"}, // Format 9 |