Created
March 12, 2013 23:30
-
-
Save blondie7575/5148057 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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