Files
Main_MiSTer/support/atari8bit/atari5200.h
Wojciech Mostowski deb43cd870 Migrate Atari800/5200 FW to Main (#1101)
* 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
2026-02-24 12:51:17 +08:00

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