1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-09 06:29:38 +00:00

Merge pull request #248 from greg-king5/nes-registers

Remove a const qualifier from <nes.h>.
This commit is contained in:
Oliver Schmidt 2015-12-16 10:40:41 +01:00
commit 8a2ba97c60

View File

@ -155,7 +155,7 @@ struct __apu {
};
#define APU (*(struct __apu*)0x4000)
#define JOYPAD ((unsigned char volatile const[2])0x4016)
#define JOYPAD ((unsigned char volatile[2])0x4016)
/* The addresses of the static drivers */
extern void nes_stdjoy_joy[]; /* Referred to by joy_static_stddrv[] */