2008-08-07 14:26:07 +02:00
|
|
|
#ifndef _SHARED_H_
|
|
|
|
#define _SHARED_H_
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <zlib.h>
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
#include "macros.h"
|
|
|
|
#include "m68k.h"
|
|
|
|
#include "z80.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "genesis.h"
|
|
|
|
#include "vdp.h"
|
|
|
|
#include "render.h"
|
|
|
|
#include "mem68k.h"
|
|
|
|
#include "memz80.h"
|
|
|
|
#include "membnk.h"
|
2008-08-21 22:34:00 +02:00
|
|
|
#include "gen_io.h"
|
|
|
|
#include "gen_input.h"
|
2008-08-07 14:26:07 +02:00
|
|
|
#include "state.h"
|
|
|
|
#include "sound.h"
|
|
|
|
#include "sn76489.h"
|
2009-02-28 18:49:31 +01:00
|
|
|
#include "ym2612.h"
|
2008-08-07 14:26:07 +02:00
|
|
|
#include "loadrom.h"
|
|
|
|
#include "cart_hw.h"
|
|
|
|
#include "eeprom.h"
|
|
|
|
#include "sram.h"
|
|
|
|
#include "svp.h"
|
|
|
|
#include "osd.h"
|
|
|
|
|
|
|
|
#endif /* _SHARED_H_ */
|
|
|
|
|