mirror of
https://github.com/InvisibleUp/uvmac.git
synced 2025-04-11 01:37:11 +00:00
Move M68K emulation src to new subdir
This commit is contained in:
parent
31c29eac79
commit
408d6bedc5
8
Makefile
8
Makefile
@ -12,10 +12,10 @@ bld/OSGLUWIN.o : src/UI/WIN32/OSGLUWIN.c src/LANG/STRCNENG.h cfg/STRCONST.h src/
|
||||
gcc "src/UI/WIN32/OSGLUWIN.c" -o "bld/OSGLUWIN.o" $(mk_COptions)
|
||||
bld/GLOBGLUE.o : src/GLOBGLUE.c cfg/CNFGGLOB.h
|
||||
gcc "src/GLOBGLUE.c" -o "bld/GLOBGLUE.o" $(mk_COptions)
|
||||
bld/M68KITAB.o : src/M68KITAB.c cfg/CNFGGLOB.h
|
||||
gcc "src/M68KITAB.c" -o "bld/M68KITAB.o" $(mk_COptions)
|
||||
bld/MINEM68K.o : src/MINEM68K.c cfg/CNFGGLOB.h
|
||||
gcc "src/MINEM68K.c" -o "bld/MINEM68K.o" $(mk_COptions)
|
||||
bld/M68KITAB.o : src/M68K/M68KITAB.c cfg/CNFGGLOB.h
|
||||
gcc "src/M68K/M68KITAB.c" -o "bld/M68KITAB.o" $(mk_COptions)
|
||||
bld/MINEM68K.o : src/M68K/MINEM68K.c cfg/CNFGGLOB.h
|
||||
gcc "src/M68K/MINEM68K.c" -o "bld/MINEM68K.o" $(mk_COptions)
|
||||
bld/VIAEMDEV.o : src/VIAEMDEV.c cfg/CNFGGLOB.h
|
||||
gcc "src/VIAEMDEV.c" -o "bld/VIAEMDEV.o" $(mk_COptions)
|
||||
bld/IWMEMDEV.o : src/IWMEMDEV.c cfg/CNFGGLOB.h
|
||||
|
@ -16,7 +16,6 @@
|
||||
#include <stdint.h>
|
||||
|
||||
#define MayInline inline __attribute__((always_inline))
|
||||
#define MayNotInline __attribute__((noinline))
|
||||
#define SmallGlobals 0
|
||||
#define cIncludeUnused 0
|
||||
#define UnusedParam(p) (void) p
|
||||
|
@ -80,6 +80,8 @@
|
||||
* ==========================================================================*.
|
||||
*/
|
||||
|
||||
#include "SYSDEPNS.h"
|
||||
|
||||
|
||||
/*
|
||||
ReportAbnormalID unused 0x0204 - 0x02FF
|
||||
|
@ -26,10 +26,10 @@
|
||||
#include "EMCONFIG.h"
|
||||
#include "GLOBGLUE.h"
|
||||
|
||||
#include "M68KITAB.h"
|
||||
#include "M68K/M68KITAB.h"
|
||||
#endif
|
||||
|
||||
#include "DISAM68K.h"
|
||||
#include "M68K/DISAM68K.h"
|
||||
|
||||
LOCALVAR uint32_t Disasm_pc;
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "EMCONFIG.h"
|
||||
#include "GLOBGLUE.h"
|
||||
|
||||
#include "M68KITAB.h"
|
||||
#include "M68K/M68KITAB.h"
|
||||
|
||||
struct WorkR {
|
||||
/* expected size : 8 bytes */
|
@ -38,14 +38,14 @@
|
||||
#include "EMCONFIG.h"
|
||||
#include "GLOBGLUE.h"
|
||||
|
||||
#include "M68KITAB.h"
|
||||
#include "M68K/M68KITAB.h"
|
||||
|
||||
#if WantDisasm
|
||||
#include "DISAM68K.h"
|
||||
#include "M68K/DISAM68K.h"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include "MINEM68K.h"
|
||||
#include "M68K/MINEM68K.h"
|
||||
|
||||
/*
|
||||
ReportAbnormalID unused 0x0123 - 0x01FF
|
@ -30,7 +30,7 @@
|
||||
#include "EMCONFIG.h"
|
||||
#include "GLOBGLUE.h"
|
||||
#include "SCCEMDEV.h"
|
||||
#include "MINEM68K.h"
|
||||
#include "M68K/MINEM68K.h"
|
||||
#endif
|
||||
|
||||
#include "MOUSEMDV.h"
|
||||
|
@ -24,8 +24,8 @@
|
||||
#include "UI/MYOSGLUE.h"
|
||||
#include "EMCONFIG.h"
|
||||
#include "GLOBGLUE.h"
|
||||
#include "M68KITAB.h"
|
||||
#include "MINEM68K.h"
|
||||
#include "M68K/M68KITAB.h"
|
||||
#include "M68K/MINEM68K.h"
|
||||
#include "VIAEMDEV.h"
|
||||
#if EmVIA2
|
||||
#include "VIA2EMDV.h"
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include "UI/MYOSGLUE.h"
|
||||
#include "EMCONFIG.h"
|
||||
#include "GLOBGLUE.h"
|
||||
#include "MINEM68K.h"
|
||||
#include "M68K/MINEM68K.h"
|
||||
#endif
|
||||
|
||||
#include "SCSIEMDV.h"
|
||||
|
@ -28,7 +28,7 @@
|
||||
#include "UI/MYOSGLUE.h"
|
||||
#include "EMCONFIG.h"
|
||||
#include "GLOBGLUE.h"
|
||||
#include "MINEM68K.h"
|
||||
#include "M68K/MINEM68K.h"
|
||||
#endif
|
||||
|
||||
#include "SNDEMDEV.h"
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include "ENDIANAC.h"
|
||||
#include "EMCONFIG.h"
|
||||
#include "GLOBGLUE.h"
|
||||
#include "MINEM68K.h"
|
||||
#include "M68K/MINEM68K.h"
|
||||
#endif
|
||||
|
||||
#include "SONYEMDV.h"
|
||||
|
@ -55,10 +55,6 @@ typedef int32_t simr;
|
||||
#define MayInline
|
||||
#endif
|
||||
|
||||
#ifndef MayNotInline
|
||||
#define MayNotInline
|
||||
#endif
|
||||
|
||||
#ifndef my_reg_call
|
||||
#define my_reg_call
|
||||
#endif
|
||||
@ -76,13 +72,13 @@ typedef int32_t simr;
|
||||
#define EXPORTVAR(t, v) extern t v;
|
||||
#endif
|
||||
|
||||
#define LOCALFUNC static MayNotInline
|
||||
#define LOCALFUNC static
|
||||
#define FORWARDFUNC LOCALFUNC
|
||||
#ifdef AllFiles
|
||||
#define GLOBALFUNC LOCALFUNC
|
||||
#define EXPORTFUNC LOCALFUNC
|
||||
#else
|
||||
#define GLOBALFUNC MayNotInline
|
||||
#define GLOBALFUNC
|
||||
#define EXPORTFUNC extern
|
||||
#endif
|
||||
#define IMPORTFUNC EXPORTFUNC
|
||||
|
@ -33,7 +33,7 @@
|
||||
#include "ENDIANAC.h"
|
||||
#include "EMCONFIG.h"
|
||||
#include "GLOBGLUE.h"
|
||||
#include "MINEM68K.h"
|
||||
#include "M68K/MINEM68K.h"
|
||||
#include "SONYEMDV.h"
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user