mirror of
https://github.com/SonoSooS/PicoGB.git
synced 2025-06-18 17:05:34 -04:00
27 lines
598 B
C
27 lines
598 B
C
#pragma once
|
|
|
|
//#define CONFIG_DBG
|
|
//#define CONFIG_DBG_IO
|
|
//#define GBA
|
|
//#define PPU_SCANLINE_UPDATES
|
|
//#define CONFIG_DOCTOR
|
|
//#define CONFIG_LYC_90
|
|
//#define CONFIG_BOOTMEME
|
|
#define CONFIG_NOBOOTMEME
|
|
//#define CONFIG_IS_CGB
|
|
//#define CONFIG_VSYNC
|
|
#define CONFIG_PPU_INVERT
|
|
#define CONFIG_APU_ENABLE
|
|
#define CONFIG_APU_N_PER_TICK 32
|
|
|
|
// 0 - default 32bit full-color
|
|
// 1 - 1bpp jankdither globally fixed
|
|
// 2 - 1bpp nodither
|
|
// 3 - 1bpp jankdither locally fixed
|
|
#define PPU_MODE 3
|
|
|
|
// 0 - no interlacing
|
|
// 1 - full frame interlacing (half FPS)
|
|
// 2 - actual interlacing
|
|
#define PPU_INTERLACE 1
|