Skip to content

Commit

Permalink
fix for wrong VIP crystal frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
gulrak committed Jan 6, 2024
1 parent a6e1681 commit 87848cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emulation/chip8vip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace emu {
class Chip8VIP::Private {
public:
uint16_t FETCH_LOOP_ENTRY{0x01B};
static const uint64_t CPU_CLOCK_FREQUENCY = 1760640;
static const uint64_t CPU_CLOCK_FREQUENCY = 1760900;
explicit Private(Chip8EmulatorHost& host, Cdp1802Bus& bus, const Chip8EmulatorOptions& options)
: _host(host)
, _cpu(bus, CPU_CLOCK_FREQUENCY)
Expand Down

0 comments on commit 87848cc

Please sign in to comment.