mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-04-04 13:33:08 +00:00
Move some constants from static methods to enumerations.
Signed-off-by: Adrian.Conlon <adrian.conlon@arup.com>
This commit is contained in:
parent
7830c29f6a
commit
cd63636895
@ -24,7 +24,11 @@ namespace EightBit {
|
||||
};
|
||||
|
||||
enum {
|
||||
CyclesPerSecond = 4 * 1024 * 1024,
|
||||
FramesPerSecond = 60,
|
||||
CyclesPerFrame = CyclesPerSecond / FramesPerSecond,
|
||||
TotalLineCount = 154,
|
||||
CyclesPerLine = CyclesPerFrame / TotalLineCount,
|
||||
RomPageSize = 0x4000
|
||||
};
|
||||
|
||||
|
@ -34,9 +34,6 @@ namespace EightBit {
|
||||
|
||||
virtual void reset() override;
|
||||
|
||||
static int framesPerSecond() { return 60; }
|
||||
static int cyclesPerFrame() { return cyclesPerSecond() / framesPerSecond(); }
|
||||
|
||||
int runRasterLines();
|
||||
int runRasterLine();
|
||||
int runVerticalBlankLines();
|
||||
@ -61,9 +58,6 @@ namespace EightBit {
|
||||
|
||||
bool m_prefixCB;
|
||||
|
||||
static int cyclesPerSecond() { return 4 * 1024 * 1024; }
|
||||
static int cyclesPerLine() { return cyclesPerFrame() / Bus::TotalLineCount; }
|
||||
|
||||
bool& IME() { return m_ime; }
|
||||
|
||||
uint8_t R(int r, uint8_t& a) {
|
||||
|
@ -336,7 +336,7 @@ int EightBit::GameBoy::LR35902::runRasterLines(int limit) {
|
||||
}
|
||||
|
||||
int EightBit::GameBoy::LR35902::runRasterLine() {
|
||||
const auto count = run(cyclesPerLine());
|
||||
const auto count = run(Bus::CyclesPerLine);
|
||||
if (m_bus.peekRegister(Bus::LCDC) & Bus::LcdEnable) {
|
||||
m_bus.updateLcdStatusMode(Bus::LcdStatusMode::HBlank);
|
||||
m_bus.incrementLY();
|
||||
|
Loading…
x
Reference in New Issue
Block a user