mirror of
https://github.com/libretro/stella2023.git
synced 2024-12-11 02:43:43 +00:00
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:
parent
32aa9d3186
commit
506f5357b1
@ -88,6 +88,9 @@
|
|||||||
* Modified 'disasm' debugger command to accept a second argument
|
* Modified 'disasm' debugger command to accept a second argument
|
||||||
indicating the number of lines to disassemble.
|
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
|
* Added emulation of the "Sega Genesis" controller, with two buttons
|
||||||
that are directly supported on a real system.
|
that are directly supported on a real system.
|
||||||
|
|
||||||
|
@ -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.
|
the cart will be re-disasembled) or Escape to cancel them.
|
||||||
Note that only instructions that have been fully disassembled
|
Note that only instructions that have been fully disassembled
|
||||||
can be edited. In particular, blank lines or lines with '.byte' directives
|
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
|
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
|
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
|
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 |
@ -594,6 +594,7 @@
|
|||||||
<tr><td>EEPROM path</td><td>specifies location of EEPROM files</td><td>-eepromdir</td></tr>
|
<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>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 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>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -22,13 +22,7 @@
|
|||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
|
||||||
#define STELLA_BASE_VERSION "3.1_test5"
|
#define STELLA_VERSION "3.1"
|
||||||
|
|
||||||
#ifdef NIGHTLY_BUILD
|
|
||||||
#define STELLA_VERSION STELLA_BASE_VERSION "pre-" NIGHTLY_BUILD
|
|
||||||
#else
|
|
||||||
#define STELLA_VERSION STELLA_BASE_VERSION
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define STELLA_BUILD atoi("$Rev$"+6)
|
#define STELLA_BUILD atoi("$Rev$"+6)
|
||||||
|
|
||||||
|
@ -287,11 +287,14 @@ class System : public Serializable
|
|||||||
void unlockDataBus();
|
void unlockDataBus();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
/**
|
||||||
|
Describes how a page can be accessed
|
||||||
|
*/
|
||||||
enum PageAccessType {
|
enum PageAccessType {
|
||||||
PA_READ = 1 << 0,
|
PA_READ = 1 << 0,
|
||||||
PA_WRITE = 1 << 1,
|
PA_WRITE = 1 << 1,
|
||||||
PA_READWRITE = PA_READ | PA_WRITE
|
PA_READWRITE = PA_READ | PA_WRITE
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Structure used to specify access methods for a page
|
Structure used to specify access methods for a page
|
||||||
|
Loading…
Reference in New Issue
Block a user