doc updated for _cycles pseudo-register

This commit is contained in:
thrust26 2017-12-15 19:06:06 +01:00
parent 2f57ccb463
commit 50fc9a6733
2 changed files with 6 additions and 2 deletions

View File

@ -86,12 +86,15 @@
* Added 'Options...' button to debugger which gives access to the options
menu during debugging.
* Added debugger pseudo-register '_fcycles', which gives the number of
CPU cycles that have occurred since the frame started.
* Added debugger pseudo-register '_cycles', which gives the number of
CPU cycles of the last instruction.
* Added debugger pseudo-register '_cyclesLo' and '_cyclesHi', which give
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
the end of the range to dump data.

View File

@ -738,6 +738,7 @@ that holds 'number of scanlines' on an actual console).</p>
<tr><th>Function</th><th>Description</th></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> _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> _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>