comparison lwasm/insn_bitbit.c @ 402:b20f14edda5a

Completed initial conversion to new parser allowing spaces in operands Converted the remaining addressing modes. This required a complete rewrite of a large portion of the indexed addressing parser. Now the entire indexed parsing system is programmatic without cheating with a lookup table. This update also fixes the "force 0,r" by writing a literal 0,r which is *supposed* to work. There will likely be some pseudo ops that need tweaking for space handling, specially those that take multiple operands of some description which are not expressions. (The expression parser call eats the spaces both before and after the expression, if appropriate.)
author William Astle <lost@l-w.ca>
date Wed, 14 Oct 2015 20:49:41 -0600
parents 8764142b3192
children
comparison
equal deleted inserted replaced
401:bbe5401a9bf3 402:b20f14edda5a
47 else 47 else
48 { 48 {
49 lwasm_register_error(as, l, E_REGISTER_BAD); 49 lwasm_register_error(as, l, E_REGISTER_BAD);
50 return; 50 return;
51 } 51 }
52 52 lwasm_skip_to_next_token(l, p);
53 if (*(*p)++ != ',') 53 if (*(*p)++ != ',')
54 { 54 {
55 lwasm_register_error(as, l, E_OPERAND_BAD); 55 lwasm_register_error(as, l, E_OPERAND_BAD);
56 return; 56 return;
57 } 57 }
79 if (*(*p)++ != ',') 79 if (*(*p)++ != ',')
80 { 80 {
81 lwasm_register_error(as, l, E_OPERAND_BAD); 81 lwasm_register_error(as, l, E_OPERAND_BAD);
82 return; 82 return;
83 } 83 }
84 84 lwasm_skip_to_next_token(l, p);
85 // ignore base page address modifier 85 // ignore base page address modifier
86 if (**p == '<') 86 if (**p == '<')
87 (*p)++; 87 (*p)++;
88 88
89 e = lwasm_parse_expr(as, p); 89 e = lwasm_parse_expr(as, p);