KLL Compiler
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

md1Map.kll 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. Name = MD1;
  2. Version = 0.1;
  3. Author = "HaaTa (Jacob Alexander) 2014";
  4. KLL = 0.3;
  5. # Modified Date
  6. Date = 2014-09-07;
  7. # MOVE THIS SECTION to another file
  8. usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );
  9. layerState => Macro_layerState_capability( layer : 2, state : 1 );
  10. layerLatch => Macro_layerLatch_capability( layer : 2 );
  11. layerLock => Macro_layerLock_capability( layer : 2 );
  12. layerShift => Macro_layerShift_capability( layer : 2 );
  13. # END SECTION
  14. S0x00 : U"Esc";
  15. S0x01 : U"1";
  16. S0x02 : U"2";
  17. S0x03 : U"3";
  18. S0x04 : U"4";
  19. S0x05 : U"5";
  20. S0x06 : U"6";
  21. S0x07 : U"7";
  22. S0x08 : U"8";
  23. S0x09 : U"9";
  24. S0x0A : U"0";
  25. S0x0B : U"Minus";
  26. S0x0C : U"Equal";
  27. S0x0D : U"Backslash";
  28. S0x0E : U"Tab";
  29. S0x0F : U"Q";
  30. S0x10 : U"W";
  31. S0x11 : U"E";
  32. S0x12 : U"R";
  33. S0x13 : U"T";
  34. S0x14 : U"Y";
  35. S0x15 : U"U";
  36. S0x16 : U"I";
  37. S0x17 : U"O";
  38. S0x18 : U"P";
  39. S0x19 : U"LBrace";
  40. S0x1A : U"RBrace";
  41. S0x1B : U"Backspace";
  42. S0x1C : U"Ctrl";
  43. S0x1D : U"A";
  44. S0x1E : U"S";
  45. S0x1F : U"D";
  46. S0x20 : U"F";
  47. S0x21 : U"G";
  48. S0x22 : U"H";
  49. S0x23 : U"J";
  50. S0x24 : U"K";
  51. S0x25 : U"L";
  52. S0x26 : U"Semicolon";
  53. S0x27 : U"Quote";
  54. S0x28 : U"Enter";
  55. S0x29 : U"LShift";
  56. S0x2A : U"Z";
  57. S0x2B : U"X";
  58. S0x2C : U"C";
  59. S0x2D : U"V";
  60. S0x2E : U"B";
  61. S0x2F : U"N";
  62. S0x30 : U"M";
  63. S0x31 : U"Comma";
  64. S0x32 : U"Period";
  65. S0x33 : U"Slash";
  66. S0x34 : U"RShift";
  67. S0x35 : U"Function1"; # Fun key
  68. S0x36 : U"Function2"; # Left Blank Key
  69. S0x37 : U"LAlt";
  70. S0x38 : U"LGui";
  71. S0x39 : U"Space";
  72. S0x3A : U"RGui";
  73. S0x3B : U"RAlt";
  74. S0x3C : U"Function3"; # Right Blank Key 1
  75. S0x3D : U"Function4"; # Right Blank Key 2
  76. S0x3E : U"BackTick";
  77. # TODO MOVE
  78. # Function Layer Assignments
  79. U"Function1" : layerShift( 1 );
  80. U"Function2" : layerShift( 1 );
  81. U"Function3" : layerShift( 1 );
  82. U"Function4" : layerShift( 1 );