fixGB/cpu.h
FIX94 bffa0e6666
-dont close emu when opening with unsupported file or no file at all, display error message instead
-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
2017-06-07 22:25:30 +02:00

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