OT: AttributeError
Greg Ewing
greg.ewing at canterbury.ac.nz
Wed Sep 29 02:16:17 EDT 2021
On 29/09/21 3:03 pm, 2QdxY4RzWzUUiLuE at potatochowder.com wrote:
> Who thinks in little
> endian? (I was raised on 6502s and 680XX CPUs; 8080s and Z80s always
> did things backwards.)
The first CPU I wrote code for was a National SC/MP, which doesn't
have an endianness, since it never deals with more than a byte at
a time. The second was a 6800, which is big-endian. That's definitely
more convenient when you're hand-assembling code! I can see the
advantages of little-endian when you're implementing a CPU, though.
--
Greg
More information about the Python-list
mailing list