* WIP Adding Atari800 side of things * WIP Migrated some functionality from .sv to here * WIP XEX file loading works, clean-ups * WIP UART/SIO interface beginning * WIP Adding Atari800 drive emulator * WIP First version of the drive emulator working with ATR and XEX files * WIP ATX files are working * WIP HDD is now mounted separately * WIP PBI/HDD is working too * Cleaning up and adding supporting Atari ASM files * Updated versioning information in the Atari800 FW * WIP Adding support for the Atari 5200 core * Atari 5200 support complete * Atari800: fixed SIO timing bugs * Atari800: sorting out SIO timing issues still * Atari800: eliminate OSD lock up possibilities * Atari800: Improved XEX loader
65 lines
1.3 KiB
C
65 lines
1.3 KiB
C
// Minimig support
|
|
#include "support/minimig/minimig_config.h"
|
|
#include "support/minimig/minimig_boot.h"
|
|
#include "support/minimig/minimig_fdd.h"
|
|
#include "support/minimig/minimig_share.h"
|
|
|
|
// SharpMz support
|
|
#include "support/sharpmz/sharpmz.h"
|
|
|
|
// Apple 2 support
|
|
#include "support/a2/dsk2nib_lib.h"
|
|
|
|
// Archie support
|
|
#include "support/archie/archie.h"
|
|
|
|
// ST (Atari) support
|
|
#include "support/st/st_tos.h"
|
|
|
|
// X86 support
|
|
#include "support/x86/x86.h"
|
|
|
|
// SNES support
|
|
#include "support/snes/snes.h"
|
|
|
|
// N64 support
|
|
#include "support/n64/n64.h"
|
|
#include "support/n64/n64_joy_emu.h"
|
|
|
|
// NeoGeo support
|
|
#include "support/neogeo/neogeo_loader.h"
|
|
#include "support/neogeo/neogeocd.h"
|
|
|
|
|
|
// Arcade support
|
|
#include "support/arcade/mra_loader.h"
|
|
|
|
// MEGACD support
|
|
#include "support/megacd/megacd.h"
|
|
|
|
// C64 support
|
|
#include "support/c64/c64.h"
|
|
|
|
// Atari 8bit support
|
|
#include "support/atari8bit/atari800.h"
|
|
#include "support/atari8bit/atari5200.h"
|
|
|
|
// PCECD support
|
|
#include "support/pcecd/pcecd.h"
|
|
|
|
// PSX support
|
|
#include "support/psx/psx.h"
|
|
|
|
// CD-i support
|
|
#include "support/cdi/cdi.h"
|
|
|
|
// UEF support
|
|
#include "support/uef/uef_reader.h"
|
|
|
|
// Saturn support
|
|
#include "support/saturn/saturn.h"
|
|
|
|
// N64 support
|
|
#include "support/n64/n64.h"
|
|
#include "support/n64/n64_joy_emu.h"
|