Atari800: Adds support for CAS files (tapes)

* 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
This commit is contained in:
Wojciech Mostowski
2026-03-13 07:40:15 +01:00
committed by GitHub
parent 047e307ed2
commit 3acc4b39c4
4 changed files with 413 additions and 49 deletions

View File

@@ -3806,6 +3806,11 @@ static void send_keycode(unsigned short key, int press)
return;
}
if (is_atari800())
{
atari800_check_osd_key(key, press);
}
if (core_type == CORE_TYPE_8BIT)
{
uint32_t code = get_ps2_code(key);