apple2ix/src/timing.h

28 lines
483 B
C
Raw Normal View History

/*
2013-06-28 06:36:25 +00:00
* Apple // emulator for Linux
*
* CPU Timing Support.
*
* Mostly this adds support for specifically throttling the emulator speed to
* match a 1.02MHz Apple //e.
*
* Added 2013 by Aaron Culliney
*
2013-06-28 06:36:25 +00:00
*/
#ifndef _TIMING_H_
#define _TIMING_H_
#define APPLE2_HZ 2040000
2013-06-28 06:36:25 +00:00
#define NANOSECONDS 1000000000
void timing_set_cpu_target_hz(unsigned long hz);
2013-06-28 06:36:25 +00:00
void timing_set_sleep_hz(unsigned int hz);
2013-06-28 06:36:25 +00:00
void timing_initialize();
2013-06-28 06:36:25 +00:00
void timing_throttle();
2013-06-28 06:36:25 +00:00
#endif // whole file