1
0
mirror of https://github.com/fachat/xa65.git synced 2024-06-08 07:29:39 +00:00
This commit is contained in:
Andre Fachat 2023-11-02 21:57:40 +01:00
parent b4d26c3545
commit 4efdd2a59a
4 changed files with 13 additions and 13 deletions

View File

@ -105,13 +105,13 @@ char *kt[] ={
/* arithmetic operators (purely for listing, parsing is done programmatically */
char *arith_ops[] = {
"", "+", "-", // 0,1,2
"*", "/", // 3,4
">>", "<<", // 5,6
"", "+", "-", // 0,1,2
"*", "/", // 3,4
">>", "<<", // 5,6
"<", ">", "=", // 7,8,9
"<=", ">=", "<>", // 10,11,12
"<=", ">=", "<>", // 10,11,12
"&", "^", "|", // 13,14,15
"&&", "||", "==", "!=", "!" // 16,17,18,19,20
"&&", "||", "==", "!=", "!" // 16,17,18 (9),19 (12),20 (NYI)
};
/* length of arithmetic operators indexed by operator number */

Binary file not shown.