take this a bit further

This commit is contained in:
Arisotura
2024-10-24 11:44:21 +02:00
parent 82f38f0b7a
commit 079341f102
3 changed files with 73 additions and 46 deletions

View File

@ -71,6 +71,11 @@ public:
msg_BootROM,
msg_BootFirmware,
msg_InsertCart,
msg_EjectCart,
msg_InsertGBACart,
msg_InsertGBAAddon,
msg_EjectGBACart,
};
struct Message
@ -100,8 +105,11 @@ public:
void emuFrameStep();
void emuReset();
int bootROM(QStringList filename);
int bootROM(const QStringList& filename);
int bootFirmware();
int insertCart(const QStringList& filename, bool gba);
void ejectCart(bool gba);
int insertGBAAddon(int type);
bool emuIsRunning();
bool emuIsActive();