From 2890fc3bf62c8755f9bf14c33de2307c02437839 Mon Sep 17 00:00:00 2001 From: slack Date: Tue, 10 Jun 2008 23:57:20 +0200 Subject: [PATCH] Constructor en GBVideo --- GBVideo.h | 4 ++++ gbcore.h | 1 + 2 files changed, 5 insertions(+) diff --git a/GBVideo.h b/GBVideo.h index 8f0df09..4b32b85 100644 --- a/GBVideo.h +++ b/GBVideo.h @@ -2,10 +2,14 @@ class GBVideo { + GameBoy *core; + u8 VRAM[8192]; u8 OAM[]; public: + GBVideo(GameBoy *core):core(core) {} + u8 read_VRAM (int addr) const; u8 read_OAM (int addr) const; void write_VRAM(int addr, u8 value); diff --git a/gbcore.h b/gbcore.h index 3ee274a..7012648 100644 --- a/gbcore.h +++ b/gbcore.h @@ -29,6 +29,7 @@ class GameBoy friend class GBMemory; + friend class GBVideo; GBMemory memory; GBVideo video; GBRom *rom; -- 2.34.1