Ivan Kosarev
Ivan Kosarev
Thanks a lot, @ArjunNair! Added ImGUI to the list, and also found a similar project, Kivy. The first seems to be a popular choice for games, thus promising good performance,...
A good overview of the topic: UIs in Python https://livingthing.danmackinlay.name/python_gui.html Among other options, mentions this: https://github.com/vurtun/nuklear
@boriel Thanks, Jose. Added PyGame and Cairo to the list. It indeed might be that no-GUI is just enough for our needs. :-)
How interesting. I even had the test, but somehow didn't run it against the latest Z80 versions. Thanks for pointing out! Now, 6f72f45 resolves the crash, but the test still...
@jsanchezv Hi José, do you know anything about the origin of the test? Any chance the source code is available? Thanks.
This seems to be the test from Patrik Rak: https://github.com/raxoft/z80test
Resolved via 7ddaa4cb7512aa7b1abb1f7cd8f2ad8cd8e37558.
Closing this as resolved, but please re-open if something.
Hi Morten, a1fc0e2b1dc948a7745c9f15fca1236ec10eb5f2 makes the `Z80Machine.halted` field writable, so now it should be possible to exit the halted mode by setting the field to be false. The commit adds an...
9577ae87d042b1262c15b22a530170ee790e0389 added `Z80State.int_disabled` and `Z80State.halted` properties. I guess to do it properly you would also need to use `on_handle_active_int()` which takes a flag that is raised if interrupt is initiated?