summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2011-11-12 08:42:03 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2011-11-12 08:42:03 +0000
commit1be53140ef8b6733402e69d9e96ee43eaa798e7e (patch)
tree4ec79854871228407488df232e17aec8e961dc7b /src
parent0962cb7c96c79a57810a9a08c1223bfb73b65e6f (diff)
neogeo code exposed for use by aes in mess by Haze (no whatsnew)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/neogeo.c2
-rw-r--r--src/mame/includes/neogeo.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/neogeo.c b/src/mame/drivers/neogeo.c
index 5a28b0bdb3d..f1291cd523d 100644
--- a/src/mame/drivers/neogeo.c
+++ b/src/mame/drivers/neogeo.c
@@ -1275,7 +1275,7 @@ INPUT_PORTS_END
-static DEVICE_IMAGE_LOAD( neo_cartridge )
+DEVICE_IMAGE_LOAD( neo_cartridge )
{
UINT32 size;
device_t* ym = image.device().machine().device("ymsnd");
diff --git a/src/mame/includes/neogeo.h b/src/mame/includes/neogeo.h
index 623fd9a4763..90b3b8a3a72 100644
--- a/src/mame/includes/neogeo.h
+++ b/src/mame/includes/neogeo.h
@@ -119,6 +119,7 @@ void neogeo_set_display_counter_lsb(address_space *space, UINT16 data);
void neogeo_acknowledge_interrupt(running_machine &machine, UINT16 data);
void neogeo_set_main_cpu_bank_address(address_space *space, UINT32 bank_address);
READ16_HANDLER( neogeo_unmapped_r );
+DEVICE_IMAGE_LOAD( neo_cartridge );
/*----------- defined in machine/neocrypt.c -----------*/
@@ -224,3 +225,5 @@ WRITE16_HANDLER( neogeo_paletteram_w );
void neogeo_set_fixed_layer_source(running_machine &machine, UINT8 data);
UINT8 neogeo_get_auto_animation_counter(running_machine &machine);
+
+