Fixes the build.

This commit is contained in:
Ryan Holtz 2009-09-19 21:13:48 +00:00
parent 0b68bd6ab9
commit 0fa0750508

View File

@ -51,6 +51,7 @@
#define SNES_CGRAM_SIZE 0x202 /* 256 16-bit colours + 1 tacked on 16-bit colour for fixed colour */ #define SNES_CGRAM_SIZE 0x202 /* 256 16-bit colours + 1 tacked on 16-bit colour for fixed colour */
#define SNES_OAM_SIZE 0x440 /* 1088 bytes of Object Attribute Memory */ #define SNES_OAM_SIZE 0x440 /* 1088 bytes of Object Attribute Memory */
#define SNES_SPCRAM_SIZE 0x10000 /* 64kb of spc700 ram */ #define SNES_SPCRAM_SIZE 0x10000 /* 64kb of spc700 ram */
#define SNES_EXROM_START 0x1000000
#define FIXED_COLOUR 256 /* Position in cgram for fixed colour */ #define FIXED_COLOUR 256 /* Position in cgram for fixed colour */
/* Definitions for PPU Memory-Mapped registers */ /* Definitions for PPU Memory-Mapped registers */
#define INIDISP 0x2100 #define INIDISP 0x2100
@ -410,6 +411,7 @@ extern WRITE8_HANDLER( superfx_w_bank3 );
WRITE_LINE_DEVICE_HANDLER( snes_extern_irq_w ); WRITE_LINE_DEVICE_HANDLER( snes_extern_irq_w );
extern UINT8 snes_has_addon_chip; extern UINT8 snes_has_addon_chip;
extern UINT32 snes_rom_size;
extern UINT16 snes_htmult; extern UINT16 snes_htmult;
extern void snes_gdma( const address_space *space, UINT8 channels ); extern void snes_gdma( const address_space *space, UINT8 channels );