kosarev / z80

Fast and flexible Z80/i8080 emulator with C++ and Python APIs
MIT License
63 stars 10 forks source link

State modules to be allowed to have their own generic register handlers #18

Closed kosarev closed 3 years ago

kosarev commented 3 years ago

Working on #17 revealed the problem with the state modules not having their own on_get_reg(), on_get_regp(), etc. handlers. That's certainly something up to them to implement as it directly affects available design choices.

A subtask of #17.

kosarev commented 3 years ago

Done. Now state modules can handle any accesses to registers, including generic ones, as they like.