You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

keymap_sr.c 931B

1234567891011121314151617181920212223242526272829303132333435
  1. /** @file
  2. *
  3. * "sr" 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. /** "sr" keyboard mapping */
  11. struct key_mapping sr_mapping[] __keymap = {
  12. { 0x19, 0x1a }, /* Ctrl-Y => Ctrl-Z */
  13. { 0x1a, 0x19 }, /* Ctrl-Z => Ctrl-Y */
  14. { 0x26, 0x2f }, /* '&' => '/' */
  15. { 0x28, 0x29 }, /* '(' => ')' */
  16. { 0x29, 0x3d }, /* ')' => '=' */
  17. { 0x2a, 0x28 }, /* '*' => '(' */
  18. { 0x2b, 0x2a }, /* '+' => '*' */
  19. { 0x2d, 0x27 }, /* '-' => '\'' */
  20. { 0x2f, 0x2d }, /* '/' => '-' */
  21. { 0x3c, 0x3b }, /* '<' => ';' */
  22. { 0x3d, 0x2b }, /* '=' => '+' */
  23. { 0x3e, 0x3a }, /* '>' => ':' */
  24. { 0x3f, 0x5f }, /* '?' => '_' */
  25. { 0x40, 0x22 }, /* '@' => '"' */
  26. { 0x59, 0x5a }, /* 'Y' => 'Z' */
  27. { 0x5a, 0x59 }, /* 'Z' => 'Y' */
  28. { 0x5e, 0x26 }, /* '^' => '&' */
  29. { 0x5f, 0x3f }, /* '_' => '?' */
  30. { 0x79, 0x7a }, /* 'y' => 'z' */
  31. { 0x7a, 0x79 }, /* 'z' => 'y' */
  32. };