1
0
Fork 0

Changed the counter for the cpu decoder to a signed integer and changed the cpu_cycle counter

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@386
This commit is contained in:
Sjoerd van der Berg 2002-10-20 10:44:31 +00:00
parent 1d9ec59b07
commit 311f87dcb4

View file

@ -25,9 +25,9 @@
/* Some common Defines */
/* A CPU Handler */
typedef Bitu (CPU_Decoder)(Bitu count);
typedef Bitu (CPU_Decoder)(Bits count);
extern CPU_Decoder * cpudecoder;
extern Bit32u cpu_cycles;
extern Bitu cpu_cycles;
//CPU Stuff
void SetCPU16bit();