~ubuntu-branches/debian/experimental/mednafen/experimental

« back to all changes in this revision

Viewing changes to src/psx/cpu.h

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2012-11-19 07:00:37 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20121119070037-jvknrm13zvim88oc
Tags: 0.9.26-1
* New upstream WIP version.
* Change priority to "extra" to match libvorbisidec1's.
* Drop "DM-Upload-Allowed" since it is no longer appropriate.
* Refresh patches, replacing MPC_STATUS_FAIL constant from older mpcdec
  versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
  next_event_ts = next_event_ts_arg;
26
26
 }
27
27
 
28
 
 INLINE pscpu_timestamp_t GetEventNT(void)
29
 
 {
30
 
  return(next_event_ts);
31
 
 }
32
 
 
33
 
 
34
28
 pscpu_timestamp_t Run(pscpu_timestamp_t timestamp_in, bool ILHMode);
35
29
 
36
 
 void Exit(void);
37
30
 void Power(void);
38
31
 
39
32
 // which ranges 0-5, inclusive
67
60
 
68
61
 pscpu_timestamp_t next_event_ts;
69
62
 pscpu_timestamp_t gte_ts_done;
70
 
 bool Running;
71
63
 
72
64
 uint8 *FastMap[1 << (32 - FAST_MAP_SHIFT)];
73
65
 uint8 DummyPage[FAST_MAP_PSIZE];