| Previous | 199869 Revisions | Next |
| r18846 Sunday 4th November, 2012 at 16:37:52 UTC by R. Belmont |
|---|
| Normalize some include paths to always include video/ or machine/ as necessary [Robert Muth] |
| [src/mame/machine] | naomibd.h naomig1.c naomigd.h |
| [src/mame/video] | argus.c psychic5.c |
| r18845 | r18846 | |
|---|---|---|
| 1 | 1 | #ifndef _NAOMIBD_H_ |
| 2 | 2 | #define _NAOMIBD_H_ |
| 3 | 3 | |
| 4 | #include "naomig1.h" | |
| 4 | #include "machine/naomig1.h" | |
| 5 | 5 | |
| 6 | 6 | #define MCFG_NAOMI_BOARD_ADD(_tag, type, _eeprom_tag, _maincpu_tag, _irq_cb) \ |
| 7 | 7 | MCFG_NAOMI_G1_ADD(_tag, type, _maincpu_tag, _irq_cb) \ |
| r18845 | r18846 | |
|---|---|---|
| 1 | 1 | |
| 2 | 2 | #include "emu.h" |
| 3 | #include "naomig1.h" | |
| 3 | #include "machine/naomig1.h" | |
| 4 | 4 | |
| 5 | 5 | DEVICE_ADDRESS_MAP_START(amap, 32, naomi_g1_device) |
| 6 | 6 | AM_RANGE(0x04, 0x07) AM_READWRITE(sb_gdstar_r, sb_gdstar_w) |
| r18845 | r18846 | |
|---|---|---|
| 1 | 1 | #ifndef _NAOMIGD_H_ |
| 2 | 2 | #define _NAOMIGD_H_ |
| 3 | 3 | |
| 4 | #include "naomibd.h" | |
| 4 | #include "machine/naomibd.h" | |
| 5 | 5 | |
| 6 | 6 | #define MCFG_NAOMI_GDROM_BOARD_ADD(_tag, _image_tag, _pic_tag, _eeprom_tag, _maincpu_tag, _irq_cb) \ |
| 7 | 7 | MCFG_NAOMI_BOARD_ADD(_tag, NAOMI_GDROM_BOARD, _eeprom_tag, _maincpu_tag, _irq_cb) \ |
| r18845 | r18846 | |
|---|---|---|
| 114 | 114 | ***************************************************************************/ |
| 115 | 115 | |
| 116 | 116 | #include "emu.h" |
| 117 | #include "jalblend.h" | |
| 117 | #include "video/jalblend.h" | |
| 118 | 118 | #include "includes/argus.h" |
| 119 | 119 | |
| 120 | 120 |
| r18845 | r18846 | |
|---|---|---|
| 7 | 7 | ***************************************************************************/ |
| 8 | 8 | |
| 9 | 9 | #include "emu.h" |
| 10 | #include "jalblend.h" | |
| 10 | #include "video/jalblend.h" | |
| 11 | 11 | #include "includes/psychic5.h" |
| 12 | 12 | |
| 13 | 13 | #define BG_SCROLLX_LSB 0x308 |
| Previous | 199869 Revisions | Next |