Skip to content

Instantly share code, notes, and snippets.

@blondie7575
Created March 12, 2013 23:30
Show Gist options
  • Save blondie7575/5148057 to your computer and use it in GitHub Desktop.
Save blondie7575/5148057 to your computer and use it in GitHub Desktop.
/* Name: rom.c
* Author: Quinn Dunki
* Copyright: ©2012 Quinn Dunki
* License: All Rights Reserved
*
* ROM image for Veronica
* For details, see http://www.quinndunki.com/blondihacks
*/
uint8_t romData[ROM_SIZE] PROGMEM = {
#include "romImage.inc" // This file is generated from romImage.S using ca65 and hexdump
// $FFFA Non-maskable interrupt vector
0x00,0x00,
// $FFFC Restart vector
0x00,0xF0,
// $FFFE Interrupt vector
0x00,0x00
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment