First renames after merge

Renamed folders
Updated Makefile contents
Removed obsolete files/folders
This commit is contained in:
Dimitris Panokostas 2016-12-09 19:04:33 +01:00
parent 247acd0575
commit 348281d36a
72 changed files with 55 additions and 976 deletions

35
src/machdep/support.cpp Normal file
View file

@ -0,0 +1,35 @@
#include "config.h"
#include "sysconfig.h"
#include <stdlib.h>
#include <stdarg.h>
#include <signal.h>
#include "sysdeps.h"
#include "options.h"
#include "memory.h"
#include "newcpu.h"
#include "custom.h"
extern int screen_is_picasso;
int64_t g_uae_epoch = 0;
int 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
return 1;
}
void machdep_free (void)
{
}