mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-19 03:04:28 +00:00
* 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
15 lines
407 B
C
15 lines
407 B
C
#ifndef __ATARI5200_H__
|
|
#define __ATARI5200_H__
|
|
|
|
int atari5200_get_match_cart_count();
|
|
const char *atari5200_get_cart_match_name(int match_index);
|
|
|
|
void atari5200_init();
|
|
void atari5200_reset();
|
|
void atari5200_poll();
|
|
void atari5200_umount_cartridge();
|
|
int atari5200_check_cartridge_file(const char* name, unsigned char index);
|
|
void atari5200_open_cartridge_file(const char* name, int match_index);
|
|
|
|
#endif
|