Fix a few small typo's.
Chris Pressey
6 years ago
142 | 142 |
|
143 | 143 |
In addition, various checks are not attempted (such as tracking the usage
|
144 | 144 |
of an indirect indexed table) and other checks may be subverted (for example
|
145 | |
by `locate`ing two variables with two different types of storage at the same
|
|
145 |
by `assign`ing two variables with two different types of storage at the same
|
146 | 146 |
address.)
|
147 | 147 |
|
148 | 148 |
In summary, SixtyPical helps you write a very-nearly-assembly-level program
|
0 | |
Anayzling SixtyPical Programs
|
|
0 |
Analyzing SixtyPical Programs
|
1 | 1 |
=============================
|
2 | 2 |
|
3 | 3 |
-> Tests for functionality "Analyze SixtyPical program"
|
144 | 144 |
| }
|
145 | 145 |
= True
|
146 | 146 |
|
147 | |
An address may be declared with `locate`, which is like `.alias` in an
|
|
147 |
An address may be declared with `assign`, which is like `.alias` in an
|
148 | 148 |
assembler, with the understanding that the value will be treated "like an
|
149 | 149 |
address." This is generally an address into the operating system or hardware
|
150 | 150 |
(e.g. kernal routine, I/O port, etc.)
|
17 | 17 |
|
18 | 18 |
Funny syntax indicates use of a special form.
|
19 | 19 |
|
20 | |
In these, `absolute` must be a `reserve`d or `locate`d address.
|
|
20 |
In these, `absolute` must be a `reserve`d or `assign`d address.
|
21 | 21 |
`immediate` must be a literal decimal or hexadecimal number
|
22 | 22 |
(or in future, a declared constant.)
|
23 | 23 |
|