mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-19 03:04:28 +00:00
* WIP Atari800 CAS file support * Atari800: Basic CAS files work * Atari800: tape timing corrections * Atari800: Joy2 port turbos now work * Atari800 CAS files last major bug and clean up * Atari800 CAS sneak peek progress info for tapes * Atari800: final CAS support touches
17 lines
614 B
C
17 lines
614 B
C
#ifndef __ATARI800_H__
|
|
#define __ATARI800_H__
|
|
|
|
int atari800_get_match_cart_count();
|
|
const char *atari800_get_cart_match_name(int match_index);
|
|
void atari800_init();
|
|
void atari800_reset();
|
|
void atari800_poll();
|
|
void atari800_umount_cartridge(uint8_t stacked);
|
|
int atari800_check_cartridge_file(const char* name, unsigned char index);
|
|
void atari800_open_cartridge_file(const char* name, int match_index);
|
|
void atari800_open_bios_file(const char* name, unsigned char index);
|
|
void atari800_set_image(int ext_index, int file_index, const char *name);
|
|
void atari800_check_osd_key(unsigned short key, int press);
|
|
|
|
#endif
|