Generate zero-page code for and, or, and xor, when possible.
Chris Pressey
6 years ago
0 | 0 |
History of SixtyPical
|
1 | 1 |
=====================
|
|
2 |
|
|
3 |
0.16
|
|
4 |
----
|
|
5 |
|
|
6 |
* `or a, z`, `and a, z`, and `eor a, z` compile to zero-page operations
|
|
7 |
if the address of z < 256.
|
2 | 8 |
|
3 | 9 |
0.15
|
4 | 10 |
----
|
88 | 88 |
* Automatic tail-call optimization (could be tricky, w/constraints?)
|
89 | 89 |
* Possibly `ld x, [ptr] + y`, possibly `st x, [ptr] + y`.
|
90 | 90 |
* Maybe even `copy [ptra] + y, [ptrb] + y`, which can be compiled to indirect LDA then indirect STA!
|
91 | |
* Optimize `or|and|eor a, z` to zero-page operations if address of z < 256.
|
92 | 91 |
|
93 | 92 |
[VICE]: http://vice-emu.sourceforge.net/
|
331 | 331 |
if isinstance(src, ConstantRef):
|
332 | 332 |
self.emitter.emit(cls(Immediate(Byte(src.value))))
|
333 | 333 |
else:
|
334 | |
self.emitter.emit(cls(Absolute(self.get_label(src.name))))
|
|
334 |
self.emitter.emit(cls(self.absolute_or_zero_page(self.get_label(src.name))))
|
335 | 335 |
else:
|
336 | 336 |
raise UnsupportedOpcodeError(instr)
|
337 | 337 |
elif opcode in ('shl', 'shr'):
|
132 | 132 |
Absolute: 0x2d,
|
133 | 133 |
AbsoluteX: 0x3d,
|
134 | 134 |
AbsoluteY: 0x39,
|
|
135 |
ZeroPage: 0x25,
|
135 | 136 |
}
|
136 | 137 |
|
137 | 138 |
|
|
230 | 231 |
Absolute: 0x4d,
|
231 | 232 |
AbsoluteX: 0x5d,
|
232 | 233 |
AbsoluteY: 0x59,
|
|
234 |
ZeroPage: 0x45,
|
233 | 235 |
}
|
234 | 236 |
|
235 | 237 |
|
|
298 | 300 |
Absolute: 0x0d,
|
299 | 301 |
AbsoluteX: 0x1d,
|
300 | 302 |
AbsoluteY: 0x19,
|
|
303 |
ZeroPage: 0x05,
|
301 | 304 |
}
|
302 | 305 |
|
303 | 306 |
|
111 | 111 |
= $080F STA $0400
|
112 | 112 |
= $0812 RTS
|
113 | 113 |
|
114 | |
Accesses to memory locations in zero-page with `ld` and `st` use zero-page addressing.
|
|
114 |
Accesses to memory locations in zero-page with `ld` and `st`
|
|
115 |
and `and`, `or`, and `xor` use zero-page addressing.
|
115 | 116 |
|
116 | 117 |
| byte zp @ $00
|
117 | 118 |
| byte screen @ 100
|
|
125 | 126 |
| st a, screen
|
126 | 127 |
| ld a, zp
|
127 | 128 |
| st a, zp
|
|
129 |
| and a, zp
|
|
130 |
| or a, zp
|
|
131 |
| xor a, zp
|
128 | 132 |
| }
|
129 | 133 |
= $080D LDA $64
|
130 | 134 |
= $080F STA $64
|
131 | 135 |
= $0811 LDA $00
|
132 | 136 |
= $0813 STA $00
|
133 | |
= $0815 RTS
|
|
137 |
= $0815 AND $00
|
|
138 |
= $0817 ORA $00
|
|
139 |
= $0819 EOR $00
|
|
140 |
= $081B RTS
|
134 | 141 |
|
135 | 142 |
Memory location with initial value.
|
136 | 143 |
|