OK, hopefully this is the final commit for 3.1 (yeah right!).

Updated all remaining issues with the documentation and
changelog, and bumped the version # to 3.1.


git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2013 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2010-04-14 23:49:02 +00:00
parent 32aa9d3186
commit 506f5357b1
6 changed files with 10 additions and 9 deletions

View File

@ -88,6 +88,9 @@
* Modified 'disasm' debugger command to accept a second argument
indicating the number of lines to disassemble.
* Improved tab-completion in the debugger prompt; it now completes
on functions and pseudo-registers.
* Added emulation of the "Sega Genesis" controller, with two buttons
that are directly supported on a real system.

View File

@ -998,7 +998,7 @@ them. When you're done, press Enter to accept the changes (in which case
the cart will be re-disasembled) or Escape to cancel them.
Note that only instructions that have been fully disassembled
can be edited. In particular, blank lines or lines with '.byte' directives
cannot be edited. If you wish to edit the latter, then the 'Determine code'
cannot be edited. If you wish to edit the latter, then the 'Resolve data'
item should be set to 'Never' first. Also note that certain ROMs can have
sections of address space swapped in and out dynamically. As such, changing
the contents of a certain address will change the area pointed to <b>at

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

View File

@ -594,6 +594,7 @@
<tr><td>EEPROM path</td><td>specifies location of EEPROM files</td><td>-eepromdir</td></tr>
<tr><td>Multiple snapshots</td><td>whether to overwrite old snapshots</td><td>-sssingle</td></tr>
<tr><td>Snapshot in 1x mode</td><td>save snapshot in 1x mode, without filtering</td><td>-ss1x</td></tr>
<tr><td>Snapshot interval</td><td>interval (in seconds) between snapshot</td><td>-ssinterval</td></tr>
</table>
</td>
</tr>

View File

@ -22,13 +22,7 @@
#include <cstdlib>
#define STELLA_BASE_VERSION "3.1_test5"
#ifdef NIGHTLY_BUILD
#define STELLA_VERSION STELLA_BASE_VERSION "pre-" NIGHTLY_BUILD
#else
#define STELLA_VERSION STELLA_BASE_VERSION
#endif
#define STELLA_VERSION "3.1"
#define STELLA_BUILD atoi("$Rev$"+6)

View File

@ -287,11 +287,14 @@ class System : public Serializable
void unlockDataBus();
public:
/**
Describes how a page can be accessed
*/
enum PageAccessType {
PA_READ = 1 << 0,
PA_WRITE = 1 << 1,
PA_READWRITE = PA_READ | PA_WRITE
};
};
/**
Structure used to specify access methods for a page