|
|
|
|
|
by snvzz
1176 days ago
|
|
Very different ISAs. m68k is quite comfortable to write assembly for, with 8x GPRs (D0-D7) and 8x address registers (A0-A7), all 32 bit, and flat memory model. 8086 OTOH not so much. More like painful. 16 bits, few registers, many opcodes and addressing modes operate with specific registers, and the mess which is segments, needed because 16bit would otherwise only adress 64KB. |
|