1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-21 21:33:54 +00:00

+ Some off-the-cuff thoughts on the 8-bit CPUs.

Thomas Harte 2020-12-23 00:28:02 -04:00
parent 0539c67409
commit f6993e01b1

@ -50,3 +50,10 @@ What to include in the template signature will be a question of measure and degr
4. use those to build out the higher-function pre-PowerPC Macintoshes.
With a workable pattern suitably discovered, apply the same to other architectures.
## Z80 and 6502 Notes
Both the Z80 and 6502 both almost have instruction decoders themselves, in the form of the disassemblers. It would probably make sense to formalise those; it also wouldn't necessarily be unproductive:
* in 6502 world, it would simplify the logic flow for instruction set selection between the 6502, various 65C02s and possibly the 65816; and
* for the purposes of the Z80, it might aid in unification of CLK and CP/M for OS X.