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.

mapping.kll 750B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. Name = mapping test;
  2. Author = "HaaTa (Jacob Alexander) 2016";
  3. KLL = 0.5b;
  4. # Mapping Operators ##
  5. S0x01 : U"A";
  6. S0x01 : U"A";
  7. # Must include file twice for this case to work
  8. S0x02 : U"B";
  9. U"B" :: U"C";
  10. S0x03 :+ U"D";
  11. S0x04 : U"E";
  12. S0x04 :+ U"F";
  13. S0x04 :+ U"F";
  14. S0x04 :+ U"L";
  15. S0x06 : U"G";
  16. S0x06 :+ U"H";
  17. S0x06 :- U"G";
  18. S0x07 + S0x08 : U"H";
  19. S0x09, S0x0A : U"I";
  20. S[0x0B, 0x0B, 0x0C] : U"J";
  21. S0x0D :- U"K";
  22. ## Isolation Mappings ##
  23. S0x10 i: U"M";
  24. S0x10 i: U"M";
  25. # Must include file twice for this case to work
  26. S0x11 i: U"N";
  27. U"N" i:: U"O";
  28. S0x12 i:+ U"P";
  29. S0x13 i: U"Q";
  30. S0x13 i:+ U"R";
  31. S0x14 i: U"S";
  32. S0x14 i:+ U"T";
  33. S0x14 i:- U"S";
  34. S0x15 + S0x16 i: U"U";
  35. S0x17, S0x18 i: U"V";
  36. S[0x19, 0x1A] i: U"W";
  37. S0x1B i:- U"X";