--- simulavr-1.0.0/examples/atmel_key/scancodes.h.orig 2012-02-12 07:26:38.000000000 -0800 +++ simulavr-1.0.0/examples/atmel_key/scancodes.h 2015-11-07 19:31:53.543959000 -0800 @@ -15,7 +15,7 @@ // Unshifted characters -static char unshifted[][2] __attribute__ ((progmem)) = { +static const char unshifted[][2] __attribute__ ((progmem)) = { 0x0d,9, 0x0e,'`', 0x15,'q', @@ -87,7 +87,8 @@ }; // Shifted characters -prog_char shifted[][2] = { +static const char shifted[][2] PROGMEM = { +/*prog_char shifted[][2] = {*/ 0x0d,9, 0x0e,'~', 0x15,'Q',