Getting ready for the next point release.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2381 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2012-02-04 15:17:30 +00:00
parent e75156c878
commit 009fb5c91a
4 changed files with 11 additions and 3 deletions

View File

@ -60,9 +60,17 @@
* Added 'FA2' bankswitch scheme, thanks to code from Chris D.
Walton. This scheme will be used in an upcoming 'Star Castle' ROM.
* Updated internal ROM properties database to ROM-Hunter version 7
(thanks go to RomHunter for his tireless research in this area).
* Added several PERL tools to help in automation of analyzing RomHunter
ROM set releases.
* Fixed compile issues in Irix when using the default compiler
instead of gcc. Thanks go to Rainer M. Canavan for this code.
* Updated included PNG library to latest stable version.
-Have fun!

View File

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

View File

@ -119,7 +119,7 @@ uInt8 M6532::peek(uInt16 addr)
{
case 0x00: // SWCHA - Port A I/O Register (Joystick)
{
uInt8 value = (myConsole.controller(Controller::Left).read() << 4)|
uInt8 value = (myConsole.controller(Controller::Left).read() << 4) |
myConsole.controller(Controller::Right).read();
// Each pin is high (1) by default and will only go low (0) if either

View File

@ -47,7 +47,7 @@ class M6532 : public Device
Create a new 6532 for the specified console
@param console The console the 6532 is associated with
@param randRam Randomize or zero RAM on reset
@param settings The settings used by the system
*/
M6532(const Console& console, const Settings& settings);