diff options
author | 2013-06-18 14:01:12 +0000 | |
---|---|---|
committer | 2013-06-18 14:01:12 +0000 | |
commit | 6125d95e1dfea3e0dc2e01bb0affcd138a379bc2 (patch) | |
tree | c086b88bc0323f91349aa39d7835f5c519775c6b /src/mess/machine/snescx4.c | |
parent | 8886da8e86a9402cce8712b84d8be611b99e8c96 (diff) |
Made includes of C files in drivers section to use .inc instead, and also renamed galdrvr.c into galaxian.inc and neodrvr.c to neogeo.inc since it makes more sense (nw)
Diffstat (limited to 'src/mess/machine/snescx4.c')
-rw-r--r-- | src/mess/machine/snescx4.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/snescx4.c b/src/mess/machine/snescx4.c index 560802b5b93..dc534df4531 100644 --- a/src/mess/machine/snescx4.c +++ b/src/mess/machine/snescx4.c @@ -23,8 +23,8 @@ static void CX4_writew(running_machine &machine, UINT16 addr, UINT16 data); static void CX4_C4DrawLine(INT32 X1, INT32 Y1, INT16 Z1, INT32 X2, INT32 Y2, INT16 Z2, UINT8 Color); -#include "machine/cx4data.c" -#include "machine/cx4fn.c" +#include "machine/cx4data.inc" +#include "machine/cx4fn.inc" static UINT32 CX4_ldr(UINT8 r) { @@ -113,8 +113,8 @@ static void CX4_transfer_data(running_machine &machine) } } -#include "machine/cx4oam.c" -#include "machine/cx4ops.c" +#include "machine/cx4oam.inc" +#include "machine/cx4ops.inc" void CX4_write(running_machine &machine, UINT32 addr, UINT8 data) { |