Skip to content

Commit

Permalink
Update crt_core.h
Browse files Browse the repository at this point in the history
  • Loading branch information
LMP88959 authored Apr 8, 2023
1 parent 36699ed commit 06440e8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crt_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,15 @@ extern "C" {
#define CRT_SYSTEM_NTSC 0 /* standard NTSC */
#define CRT_SYSTEM_NES 1 /* decode 6 or 9-bit NES pixels */
#define CRT_SYSTEM_PV1K 2 /* Casio PV-1000 */
#define CRT_SYSTEM_SNES 3 /* SNES - uses RGB */

/* the system to be compiled */
#define CRT_SYSTEM CRT_SYSTEM_NTSC

#if (CRT_SYSTEM == CRT_SYSTEM_NES)
#include "crt_nes.h"
#elif (CRT_SYSTEM == CRT_SYSTEM_SNES)
#include "crt_snes.h"
#elif (CRT_SYSTEM == CRT_SYSTEM_NTSC)
#include "crt_ntsc.h"
#elif (CRT_SYSTEM == CRT_SYSTEM_PV1K)
Expand Down

0 comments on commit 06440e8

Please sign in to comment.