mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 00:08:27 -05:00
Core: Cleaned up SingleStep(), updated default LCD refresh to assume each instruction is ~3 cycles
This commit is contained in:
@ -8,7 +8,8 @@
|
||||
|
||||
namespace LCD {
|
||||
|
||||
static const u32 kFrameTicks = 268123480 / 60; ///< 268MHz / 60 frames per second
|
||||
static const u32 kFrameCycles = 268123480 / 60; ///< 268MHz / 60 frames per second
|
||||
static const u32 kFrameTicks = kFrameCycles / 3; ///< Approximate number of instructions/frame
|
||||
|
||||
struct Registers {
|
||||
u32 framebuffer_top_left_1;
|
||||
|
Reference in New Issue
Block a user