Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

keymap_no-latin1.c 908B

12345678910111213141516171819202122232425262728293031323334
  1. /** @file
  2. *
  3. * "no-latin1" keyboard mapping
  4. *
  5. * This file is automatically generated; do not edit
  6. *
  7. */
  8. FILE_LICENCE ( PUBLIC_DOMAIN );
  9. #include <ipxe/keymap.h>
  10. /** "no-latin1" keyboard mapping */
  11. struct key_mapping no_latin1_mapping[] __keymap = {
  12. { 0x26, 0x2f }, /* '&' => '/' */
  13. { 0x28, 0x29 }, /* '(' => ')' */
  14. { 0x29, 0x3d }, /* ')' => '=' */
  15. { 0x2a, 0x28 }, /* '*' => '(' */
  16. { 0x2b, 0x60 }, /* '+' => '`' */
  17. { 0x2d, 0x2b }, /* '-' => '+' */
  18. { 0x2f, 0x2d }, /* '/' => '-' */
  19. { 0x3c, 0x3b }, /* '<' => ';' */
  20. { 0x3d, 0x5c }, /* '=' => '\\' */
  21. { 0x3e, 0x3a }, /* '>' => ':' */
  22. { 0x3f, 0x5f }, /* '?' => '_' */
  23. { 0x40, 0x22 }, /* '@' => '"' */
  24. { 0x5c, 0x27 }, /* '\\' => '\'' */
  25. { 0x5d, 0x7e }, /* ']' => '~' */
  26. { 0x5e, 0x26 }, /* '^' => '&' */
  27. { 0x5f, 0x3f }, /* '_' => '?' */
  28. { 0x60, 0x7c }, /* '`' => '|' */
  29. { 0x7c, 0x2a }, /* '|' => '*' */
  30. { 0x7d, 0x5e }, /* '}' => '^' */
  31. };