Woups, typing error! :?
Now I have removed the space in my code, thanks for pointing this out!
Oki, this is how it works if anyone would like it different:
“Scancode Map”=hex:00,00,00,00,00,00,00,00,06,00,00,00,0E,00,7D,00,56,00,7b,00,38,E0,79,00,38,E0,70,00,36,00,73,00,00,00,00,00
I split this up into words:
00,00,00,00,
00,00,00,00,
06,00,00,00, <- This is number of words below
0E,00,7D,00, <- Modify button 0x007D into 0x000E
56,00,7b,00, <- Modify button 0x007B into 0x0056
38,E0,79,00, <- Modify button 0x0079 into 0xE038
38,E0,70,00, <- Modify button 0x0070 into 0xE038
36,00,73,00, <- Modify button 0x0073 into 0x0036
00,00,00,00 <- Terminates, always zeros
Scancodes can be found here in PDF format (at a microsoft site!)
Look at the “PS/2 Set 1 Make*” column
0x007D or 7D is the “Keyboard Int’l 2”/“Yen” button
0x000E or 0E is the backspace button.
Some more information can be found here .
/Bushman