> On 22 Feb 2021, at 12:40, Michał Górny <[email protected]> wrote: > >> I'm talking about 16-bit memory alignment which causes SIGBUS if it's >> not respected on m68k. >> > > I don't understand why you consider this to be a problem. After all, > x86 has stronger (32-bit) alignment requirements, so m68k is actually > less likely to break.
On x86 you can make unaligned access to memory. Alignment is a nice to have for performance. But on m68k you MUST align or you get a SIGBUS. Barry
_______________________________________________ Python-Dev mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/PNZUNGJFDVEICWYUCBEYHVTOFE4CW2LP/ Code of Conduct: http://python.org/psf/codeofconduct/
