vAmiga
vAmiga copied to clipboard
vAmiga is a user-friendly Amiga 500, 1000, 2000 emulator for macOS
I understand that the only differences between the 020 and 030 are not in the instruction set but in the MMU which is not useful in emulation, and data cache...
Recently, I had another look at the Musashi core and noticed that supporting the 68010 and 68020 isn't as difficult as I originally thought. As a starting point, I've decided...
As part of my efforts to improve general code quality, I would like to make vAmiga's code base compatible with Visual C++. Since I don't use Windows regularly, I am...
During the opening credits, the text flickers when scrolling upwards. I'm not sure if the issue is only on my iMac 21.5'' Intel i5 (2017), macOS 12.5. On UAE it...
It would be great to have a menu item, which resizes vAmiga's window to have a nice 1:1 pixel rendering.
kickstart 1.2-1.3 workbench 1.2 overscan last line has white color
Currently, we have: - breakpoints - watchpoints - catchpoints Proposal: Add beamtraps that pause the emulator at specific coordinates. This feature is virtually free. All that is needed is to...
RetroShell has a simple debugger which looks like this at the moment: It provides elementary commands such as single stepping through the code. I want to - extend the debug...
VirtualC64 has the option to run the VICII backend in warp mode with a lower frequency: It should be easy to implement something similar for Denise. Replacing ```C++ // Check...
Idea: The following condition should reliably detect whether sound is playing: ```C++ no_sound = paula.muxer.sampler[0].count() == 1 && paula.muxer.sampler[1].count() == 1 && paula.muxer.sampler[2].count() == 1 && paula.muxer.sampler[3].count() == 1 ```...