Rev 611 | Rev 623 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 611 | Rev 614 | ||
|---|---|---|---|
| Line 428... | Line 428... | ||
| 428 | __address symaddr; |
428 | __address symaddr; |
| 429 | bool isaddr = false; |
429 | bool isaddr = false; |
| 430 | bool isptr = false; |
430 | bool isptr = false; |
| 431 | 431 | ||
| 432 | /* If we get a name, try to find it in symbol table */ |
432 | /* If we get a name, try to find it in symbol table */ |
| 433 | if (text[0] < '0' | text[0] > '9') { |
433 | if (text[0] < '0' || text[0] > '9') { |
| 434 | if (text[0] == '&') { |
434 | if (text[0] == '&') { |
| 435 | isaddr = true; |
435 | isaddr = true; |
| 436 | text++;len--; |
436 | text++;len--; |
| 437 | } else if (text[0] == '*') { |
437 | } else if (text[0] == '*') { |
| 438 | isptr = true; |
438 | isptr = true; |