Skip to content

Commit 1cc1e49

Browse files
committed
Finished the pixel fifo :)
1 parent 8e95d94 commit 1cc1e49

File tree

9 files changed

+1396
-24
lines changed

9 files changed

+1396
-24
lines changed

core/core.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Config } from './config';
44
import { resetCycles } from './cycles';
55
import { resetSteps } from './execute';
66
import { Cpu, initializeCpu } from './cpu/index';
7-
import { Graphics, initializeGraphics, initializePalette } from './graphics/index';
7+
import { Graphics, initializeGraphics } from './graphics/index';
88
import { Interrupts, initializeInterrupts } from './interrupts/index';
99
import { Joypad } from './joypad/index';
1010
import { Memory, initializeCartridge, initializeDma, eightBitStoreIntoGBMemory, eightBitLoadFromGBMemory } from './memory/index';
@@ -95,7 +95,6 @@ function initialize(): void {
9595
initializeCartridge();
9696
initializeDma();
9797
initializeGraphics();
98-
initializePalette();
9998
initializeSound();
10099
initializeInterrupts();
101100
initializeTimers();

0 commit comments

Comments
 (0)