mirror of https://github.com/stella-emu/stella.git
doc updated for _cycles pseudo-register
This commit is contained in:
parent
2f57ccb463
commit
50fc9a6733
|
@ -86,12 +86,15 @@
|
||||||
* Added 'Options...' button to debugger which gives access to the options
|
* Added 'Options...' button to debugger which gives access to the options
|
||||||
menu during debugging.
|
menu during debugging.
|
||||||
|
|
||||||
* Added debugger pseudo-register '_fcycles', which gives the number of
|
* Added debugger pseudo-register '_cycles', which gives the number of
|
||||||
CPU cycles that have occurred since the frame started.
|
CPU cycles of the last instruction.
|
||||||
|
|
||||||
* Added debugger pseudo-register '_cyclesLo' and '_cyclesHi', which give
|
* Added debugger pseudo-register '_cyclesLo' and '_cyclesHi', which give
|
||||||
the number of CPU cycles that have occurred since emulation started.
|
the number of CPU cycles that have occurred since emulation started.
|
||||||
|
|
||||||
|
* Added debugger pseudo-register '_fcycles', which gives the number of
|
||||||
|
CPU cycles that have occurred since the frame started.
|
||||||
|
|
||||||
* Extended debugger 'dump' command to take a second argument, indicating
|
* Extended debugger 'dump' command to take a second argument, indicating
|
||||||
the end of the range to dump data.
|
the end of the range to dump data.
|
||||||
|
|
||||||
|
|
|
@ -738,6 +738,7 @@ that holds 'number of scanlines' on an actual console).</p>
|
||||||
<tr><th>Function</th><th>Description</th></tr>
|
<tr><th>Function</th><th>Description</th></tr>
|
||||||
<tr><td> _bank</td><td> Currently selected bank</td></tr>
|
<tr><td> _bank</td><td> Currently selected bank</td></tr>
|
||||||
<tr><td> _cclocks</td><td> Color clocks on a scanline</td></tr>
|
<tr><td> _cclocks</td><td> Color clocks on a scanline</td></tr>
|
||||||
|
<tr><td> _cycles</td><td> Number of cycles of last instruction</td></tr>
|
||||||
<tr><td> _cycleshi</td><td> Higher 32 bits of number of cycles since emulation started</td></tr>
|
<tr><td> _cycleshi</td><td> Higher 32 bits of number of cycles since emulation started</td></tr>
|
||||||
<tr><td> _cycleslo</td><td> Lower 32 bits of number of cycles since emulation started</td></tr>
|
<tr><td> _cycleslo</td><td> Lower 32 bits of number of cycles since emulation started</td></tr>
|
||||||
<tr><td> _fcount</td><td> Number of frames since emulation started</td></tr>
|
<tr><td> _fcount</td><td> Number of frames since emulation started</td></tr>
|
||||||
|
|
Loading…
Reference in New Issue