sgdk
|
00001 #ifndef _GENESIS_H_ 00002 #define _GENESIS_H_ 00003 00004 #define SGDK_VERSION 2.00 00005 00006 #include "types.h" 00007 00008 #define SGDK TRUE 00009 00010 #include "config.h" 00011 #include "asm.h" 00012 00013 #include "sys.h" 00014 #include "sram.h" 00015 #include "mapper.h" 00016 #include "memory.h" 00017 #include "tools.h" 00018 00019 #include "pool.h" 00020 #include "object.h" 00021 00022 #include "font.h" 00023 #include "string.h" 00024 00025 #include "tab_cnv.h" 00026 00027 #include "maths.h" 00028 #include "maths3D.h" 00029 00030 #include "vdp.h" 00031 #include "vdp_bg.h" 00032 #include "vdp_spr.h" 00033 #include "vdp_tile.h" 00034 #include "vdp_pal.h" 00035 00036 #include "pal.h" 00037 00038 #include "vram.h" 00039 #include "dma.h" 00040 00041 #include "map.h" 00042 00043 #include "bmp.h" 00044 #include "sprite_eng.h" 00045 #include "sprite_eng_legacy.h" 00046 00047 #include "z80_ctrl.h" 00048 #include "ym2612.h" 00049 #include "psg.h" 00050 00051 #include "snd/sound.h" 00052 #include "snd/xgm.h" 00053 #include "snd/xgm2.h" 00054 #include "snd/smp_null.h" 00055 #include "snd/smp_null_dpcm.h" 00056 #include "snd/pcm/snd_pcm.h" 00057 #include "snd/pcm/snd_dpcm2.h" 00058 #include "snd/pcm/snd_pcm4.h" 00059 00060 #include "joy.h" 00061 #include "timer.h" 00062 00063 #include "task.h" 00064 00065 // modules 00066 #if (MODULE_EVERDRIVE != 0) 00067 #include "ext/everdrive.h" 00068 #endif 00069 00070 #if (MODULE_FAT16 != 0) 00071 #include "ext/fat16.h" 00072 #endif 00073 00074 #if (MODULE_MEGAWIFI != 0) 00075 #include "ext/mw/megawifi.h" 00076 #endif 00077 00078 #if (MODULE_FLASHSAVE != 0) 00079 #include "ext/flash-save/flash.h" 00080 #include "ext/flash-save/saveman.h" 00081 #endif 00082 00083 #if (MODULE_CONSOLE != 0) 00084 #include "ext/console.h" 00085 #endif 00086 00087 // preserve compatibility with old resources name 00088 #define logo_lib sgdk_logo 00089 #define font_lib font_default 00090 #define font_pal_lib font_pal_default 00091 00092 #endif // _GENESIS_H_