Moved Variables to main.c

This commit is contained in:
0xmac 2025-01-07 14:36:11 +01:00
parent 6f2c89964f
commit ac2400c555

View File

@ -11,6 +11,10 @@
#define BACKCOLOR sfBlack
#define FPS 60
#define SCREEN_WIDTH 786
#define SCREEN_HEIGHT 512
#define SDL_X_SIZE 786
#define SDL_Y_SIZE 786
#define PREAMBLE "LS7 Emulator by Gabriel Weingardt.\nLicense: GPL v.3+\n\n"
@ -38,8 +42,3 @@ F9 Save CPU snapshot\n\
F10 Load previous snapshot\n\
F11 CPU NMI\n\
F12 CPU IRQ\n\n"
static float displayscale = 2;
static int cpuspeed = 100000; // 100 kHz
static int singlestep = 0;
static int clocksteps = 1;