mirror of
https://github.com/libretro/fixGB.git
synced 2024-11-26 18:50:22 +00:00
bffa0e6666
-dont close emu on invalid cpu instruction, freeze game instead until a button is pressed -set window title more proper -display currently playing .gbs track on screen rather than just on the console via bitmap font
19 lines
335 B
C
19 lines
335 B
C
/*
|
|
* Copyright (C) 2017 FIX94
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
#ifndef _cpu_c_
|
|
#define _cpu_h_
|
|
|
|
void cpuInit();
|
|
void cpuCycle();
|
|
uint16_t cpuCurPC();
|
|
void cpuSetSpeed(bool cgb);
|
|
void cpuLoadGBS(uint8_t song);
|
|
void cpuPlayGBS();
|
|
|
|
#endif
|