Tweaks to README.
Chris Pressey
7 years ago
7 | 7 | |
8 | 8 | "6502-assembly-like" means that it has similar restrictions as programming |
9 | 9 | in 6502 assembly (e.g. the programmer must choose the registers that |
10 | values will be stored in) and is concomittantly easy for a compiler to | |
10 | values will be stored in) and is concomitantly easy for a compiler to | |
11 | 11 | translate it to 6502 machine language code. |
12 | 12 | |
13 | 13 | "Advanced static analysis" includes _abstract interpretation_, where we |
25 | 25 | * you tried to write the address of something that was not a routine, to |
26 | 26 | a jump vector |
27 | 27 | |
28 | and suchlike. It also provides some convenient operations and abstractions | |
29 | based on common machine-language programming idioms, such as | |
28 | and suchlike. It also provides some convenient operations based on | |
29 | machine-language programming idioms, such as | |
30 | 30 | |
31 | 31 | * copying values from one register to another (via a third register when |
32 | 32 | there are no underlying instructions that directly support it); this |