redquark-amiberry-rb/src/machdep/support.cpp
2015-05-17 07:52:43 +00:00

31 lines
450 B
C++

#include "config.h"
#include "sysconfig.h"
#include <stdlib.h>
#include <stdarg.h>
#include <signal.h>
#include "sysdeps.h"
#include "options.h"
#include "events.h"
#include "custom.h"
int64_t g_uae_epoch = 0;
void machdep_init (void)
{
picasso_requested_on = 0;
picasso_on = 0;
screen_is_picasso = 0;
// Initialize timebase
g_uae_epoch = read_processor_time();
syncbase = 1000000; // Microseconds
}
void machdep_free (void)
{
}