mirror of
https://github.com/gbdk-2020/gbdk-2020.git
synced 2026-03-06 07:24:46 +01:00
- version in gb folder becomes a shim/wrapper - Update example to enable loop profiling for sms/gg - Add Docs FAQ entry about known issue with SDCC warning "z80instructionSize() failed to parse line node, assuming 999 bytes"
14 lines
283 B
C
14 lines
283 B
C
/** @file gb/emu_debug.h
|
|
|
|
Shim for legacy use of @ref gb/emu_debug.h which has been
|
|
migrated to @ref gbdk/emu_debug.h
|
|
|
|
See the `emu_debug` example project included with gbdk.
|
|
*/
|
|
#ifndef __EMU_DEBUG_INCLUDE
|
|
#define __EMU_DEBUG_INCLUDE
|
|
|
|
#include <gbdk/emu_debug.h>
|
|
|
|
#endif
|