gr-sim: fix zero page addresses

somehow read the monitor listing wrong
This commit is contained in:
Vince Weaver 2017-05-04 09:14:44 -04:00
parent 6fb8ad2143
commit 8024a2bad4

View File

@ -23,11 +23,10 @@ static int debug=0;
unsigned char ram[RAMSIZE];
/* Zero page addresses */
#define GBASL 40
#define GBASH 41
#define MASK 50
#define COLOR 56
#define GBASL 0x26
#define GBASH 0x27
#define MASK 0x2E
#define COLOR 0x30
static SDL_Surface *sdl_screen=NULL;