From a8131ea5ed00c11517c2cb605834eb103ecac250 Mon Sep 17 00:00:00 2001 From: Ian C Date: Sun, 17 Apr 2016 22:47:10 +0100 Subject: Various fixes * Added VCS example, which highlighted some bug in the zero page detection. * 6502 fixes for the above. Still a problem with code generation. * Updates to Gameboy code (example still not working in emulator). * Fixed listing not being generated when enabled. --- src/gbout.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/gbout.c') diff --git a/src/gbout.c b/src/gbout.c index 8fa3e7a..9b73655 100644 --- a/src/gbout.c +++ b/src/gbout.c @@ -261,6 +261,13 @@ int GBOutput(const char *filename, const char *filename_bank, mem = bank[0]->memory; + /* Create the log + */ + for(f = 0; logo[f] != -1; f++) + { + PokeB(mem, 0x104 + f, logo[f]); + } + /* Create the RST handlers */ for(f = 0; f < 8; f++) -- cgit v1.2.3