Fixed a few compiler warnings, and bumped version # for final release.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2240 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2011-05-28 14:00:12 +00:00
parent 87e3a71580
commit 670b61a15a
4 changed files with 5 additions and 3 deletions

View File

@ -22,7 +22,7 @@
#include <cstdlib>
#define STELLA_VERSION "3.4_rc1"
#define STELLA_VERSION "3.4"
#define STELLA_BUILD atoi("$Rev$" + 6)
#endif

View File

@ -47,6 +47,8 @@
#define CALL_METHOD(method) ( (this->*method)() )
// TODO - use C++ streams instead of nasty C-strings and pointers
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
DebuggerParser::DebuggerParser(Debugger* d)
: debugger(d)

View File

@ -2121,7 +2121,7 @@ case 0x20:
poke(0x0100 + SP--, PC >> 8);
poke(0x0100 + SP--, PC & 0xff);
PC = low | ((uInt16)peek(PC++, DISASM_CODE) << 8);
PC = (low | ((uInt16)peek(PC, DISASM_CODE) << 8));
}
break;

View File

@ -642,7 +642,7 @@ define(M6502_JSR, `{
poke(0x0100 + SP--, PC >> 8);
poke(0x0100 + SP--, PC & 0xff);
PC = low | ((uInt16)peek(PC++, DISASM_CODE) << 8);
PC = (low | ((uInt16)peek(PC, DISASM_CODE) << 8));
}')
define(M6502_LAS, `{