You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is tightly coupled to #14.
Currently, the emulator interface inherits the memory_manager interface. That's bad. The memory_manager implements windows specific functionality and should thus be part of the windows_emulator.
The text was updated successfully, but these errors were encountered:
A consequence would be that this introduces a level of abstraction by moving things to the windows_emulator. Thus requiring a second level of virtual function calls. That's bad. CRTP should be the solution to this, to eliminate at least one level of virtual calls.
This is tightly coupled to #14.
Currently, the emulator interface inherits the memory_manager interface. That's bad. The memory_manager implements windows specific functionality and should thus be part of the windows_emulator.
The text was updated successfully, but these errors were encountered: