diff --git a/layouts/shortcodes/keypad.html b/layouts/shortcodes/keypad.html index 5d0f99d..67e90c7 100644 --- a/layouts/shortcodes/keypad.html +++ b/layouts/shortcodes/keypad.html @@ -162,7 +162,9 @@ ## Info -Blue boxes have the value in decimal, green has it in hex, and red is the name found in [ti84pceg.inc](https://raw.githubusercontent.com/EzCE/ez80-docs/main/assets/include/ti84pceg.inc). +Blue = decimal value
+Green = hex value
+Red = equate name (see [ti84pceg.inc](https://raw.githubusercontent.com/EzCE/ez80-docs/main/assets/include/ti84pceg.inc))
No key selected. @@ -283,7 +285,7 @@ `
GetCSC:
- ${parseInt(keyAttributes[key][0], 16).toString(10)} + ${parseInt(keyAttributes[key][0], 16).toString(10)} \$${keyAttributes[key][0]} ${keyAttributes[key][5]}
`; @@ -292,7 +294,7 @@ output += `GetKey (default):
- ${parseInt(keyAttributes[key][1], 16).toString(10)} + ${parseInt(keyAttributes[key][1], 16).toString(10)} \$${keyAttributes[key][1]} ${keyAttributes[key][6]}
`; @@ -302,7 +304,7 @@ output += `GetKey (2nd):
- ${parseInt(keyAttributes[key][2], 16).toString(10)} + ${parseInt(keyAttributes[key][2], 16).toString(10)} \$${keyAttributes[key][2]} ${keyAttributes[key][7]}
`; @@ -312,7 +314,7 @@ output += `GetKey (upper alpha):
- ${parseInt(keyAttributes[key][3], 16).toString(10)} + ${parseInt(keyAttributes[key][3], 16).toString(10)} \$${keyAttributes[key][3]} ${keyAttributes[key][8]}
`; @@ -322,7 +324,7 @@ output += `GetKey (lower alpha):
- ${parseInt(keyAttributes[key][4], 16).toString(10)} + ${parseInt(keyAttributes[key][4], 16).toString(10)} \$${keyAttributes[key][4]} ${keyAttributes[key][9]}
`;