Chris-Johnston / Easier68k

Work In Progress - A Python M68k assembler and simulator.
https://chris-johnston.me/Easier68k/
MIT License
15 stars 6 forks source link

Stop using characters to specify op length, Add OpCode enum #74

Closed Chris-Johnston closed 6 years ago

Chris-Johnston commented 6 years ago

Use of the 'B' 'W' 'L' characters was an ugly way to keep track of the size of OpCodes.

This cleans up the use of these characters and instead makes use of a new OpCode enum, which also provides built-in util methods.