mirror of
https://github.com/cc65/cc65.git
synced 2025-08-13 08:25:28 +00:00
Added a missing asterisk to a "hardware" struct definition.
This commit is contained in:
@@ -290,7 +290,7 @@ struct __emul {
|
|||||||
unsigned char keymap; /* Keyboard layout number */
|
unsigned char keymap; /* Keyboard layout number */
|
||||||
const char detect[2]; /* "16" if running on x16emu */
|
const char detect[2]; /* "16" if running on x16emu */
|
||||||
};
|
};
|
||||||
#define EMULATOR (*(volatile struct __emul)0x9FB0)
|
#define EMULATOR (*(volatile struct __emul *)0x9FB0)
|
||||||
|
|
||||||
/* An array window into the half Mebibyte or two Mebibytes of banked RAM */
|
/* An array window into the half Mebibyte or two Mebibytes of banked RAM */
|
||||||
#define BANK_RAM ((unsigned char[0x2000])0xA000)
|
#define BANK_RAM ((unsigned char[0x2000])0xA000)
|
||||||
|
Reference in New Issue
Block a user