From: slack Date: Tue, 10 Jun 2008 21:57:20 +0000 (+0200) Subject: Constructor en GBVideo X-Git-Tag: v0.1~58 X-Git-Url: http://slack.codemaniacs.com/git/?a=commitdiff_plain;h=2890fc3bf62c8755f9bf14c33de2307c02437839;p=wenboi.git Constructor en GBVideo --- 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;