std::exit(EXIT_FAILURE);
}
GBRom *rom=read_gbrom(argv[1]);
+ printf("rom=%p\n", rom);
}
#endif
#include "GBVideo.h"
+
+GBVideo::GBVideo(GameBoy *core):
+ display(0),
+ core(core)
+{
+ SDL_Init(SDL_INIT_VIDEO);
+ display=SDL_SetVideoMode(160,144,32,SDL_SWSURFACE);
+
+ colors[0] = SDL_MapRGB(display->format, 0xFF, 0xFF, 0xFF);
+ colors[1] = SDL_MapRGB(display->format, 0xAA, 0xAA, 0xAA);
+ colors[2] = SDL_MapRGB(display->format, 0x55, 0x55, 0x55);
+ colors[3] = SDL_MapRGB(display->format, 0x00, 0x00, 0x00);
+}
+
+GBVideo::~GBVideo()
+{
+ SDL_Quit();
+}
u8 GBVideo::read_VRAM (int addr) const
{
OAM[addr-OAM_BASE] = value;
}
+void GBVideo::update()
+{
+ //Mode 0 is present between 201-207 clks, 2 about 77-83 clks, and 3
+ //about 169-175 clks. A complete cycle through these states takes 456
+ //clks. VBlank lasts 4560 clks. A complete screen refresh occurs every
+ //70224 clks.)
+ //
+ // sequence:
+ // 2: 80 clocks \
+ // 3: 172 clocks |-> for each one of the 144 lines
+ // 0: 204 clocks (HBlank) /
+ // 1: 4560 clocks -> VBlank
+
+ int t = core->cycle_count % 70224;
+
+}
#include "GBMemory.h"
+#include "SDL.h"
class GBVideo
{
+ SDL_Surface *display;
GameBoy *core;
u8 VRAM[8192];
u8 OAM[160];
+ u32 colors[4];
+
public:
static const u16 VRAM_BASE = 0x8000;
static const u16 OAM_BASE = 0xFE00;
- GBVideo(GameBoy *core):core(core) {}
+ GBVideo(GameBoy *core);
+ ~GBVideo();
+ // VRAM/OAM access
u8 read_VRAM (int addr) const;
u8 read_OAM (int addr) const;
void write_VRAM(int addr, u8 value);
void write_OAM (int addr, u8 value);
+
+ // drawing control
+ void update();
+
+ // prevent object copying
+ private:
+ GBVideo(const GBVideo&);
+ GBVideo operator=(const GBVideo&);
+
};
CXXFLAGS=-g -Wall -Weffc++ -Wstrict-null-sentinel -Wold-style-cast \
- -Woverloaded-virtual
-LDFLAGS=-g
+ -Woverloaded-virtual $(shell sdl-config --cflags)
+LDFLAGS=-g $(shell sdl-config --libs)
all: tests
g++ $(CXXFLAGS) -c -o $@ $<
tests/test_gbrom: GBRom.cc GBRom.h
- g++ -DTEST_GBROM -o $@ GBRom.cc
+ g++ $(CXXFLAGS) $(LDFLAGS) -DTEST_GBROM -o $@ GBRom.cc
tests/test_core: tests/test_core.cc gbcore.o MBC.o GBMemory.o GBRom.o GBVideo.o
- g++ -o $@ $^
+ g++ $(CXXFLAGS) $(LDFLAGS) -o $@ $^
clean:
rm -f *.o tests/test_gbrom
GameBoy::run_status GameBoy::run_cycle()
{
+ video.update();
+
// Check for interrupts before opcode fetching
u8 IE;
if (IME && (IE=memory.read(0xFFFF)))
errmsg << "Unknown opcode 0x";
errmsg << std::hex << std::setw(2) << std::setfill('0') << opcode;
errmsg << " at 0x" << std::hex << std::setw(4) << PC-1;
- errmsg << " (cycle count = " << std::dec << cycle_count << ")";
logger.trace(errmsg.str());
break;
TRACEPOINT = 3,
};
+ // Constructors
GameBoy(std::string rom_name, GameBoyType type=GAMEBOY);
+
void irq(InterruptRequest i) { memory.write(0xFFFF, memory.read(0xFFFF) | i); }
void reset();
run_status run_cycle();
std::string status_string() const;
std::string get_port_name(int port) const;
+ // prevent object copying
+ private:
+ GameBoy(const GameBoy&);
+ GameBoy operator=(const GameBoy&);
};
#endif