From 5e5bd2c06b24f99bc7a8665ee105f25f88d00026 Mon Sep 17 00:00:00 2001 From: Patrick Mackinlay Date: Wed, 12 Jul 2023 13:10:29 +0700 Subject: [PATCH] sgi: rename mc device files --- src/mame/sgi/indigo.cpp | 2 +- src/mame/sgi/indy_indigo2.cpp | 2 +- src/mame/sgi/{sgi.cpp => mc.cpp} | 4 ++-- src/mame/sgi/{sgi.h => mc.h} | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) rename src/mame/sgi/{sgi.cpp => mc.cpp} (99%) rename src/mame/sgi/{sgi.h => mc.h} (97%) diff --git a/src/mame/sgi/indigo.cpp b/src/mame/sgi/indigo.cpp index 28c6e3a78ac..3bd25bad1d3 100644 --- a/src/mame/sgi/indigo.cpp +++ b/src/mame/sgi/indigo.cpp @@ -21,7 +21,7 @@ #include "cpu/mips/r4000.h" #include "machine/eepromser.h" #include "hpc1.h" -#include "sgi.h" +#include "mc.h" #include "light.h" #define LOG_UNKNOWN (1U << 1) diff --git a/src/mame/sgi/indy_indigo2.cpp b/src/mame/sgi/indy_indigo2.cpp index 36be2ef8934..c0fcbdfe229 100644 --- a/src/mame/sgi/indy_indigo2.cpp +++ b/src/mame/sgi/indy_indigo2.cpp @@ -67,7 +67,7 @@ #include "machine/nscsi_bus.h" #include "bus/nscsi/cd.h" #include "bus/nscsi/hd.h" -#include "sgi.h" +#include "mc.h" #include "vino.h" #include "machine/saa7191.h" #include "machine/wd33c9x.h" diff --git a/src/mame/sgi/sgi.cpp b/src/mame/sgi/mc.cpp similarity index 99% rename from src/mame/sgi/sgi.cpp rename to src/mame/sgi/mc.cpp index d0042677145..c7ac810fd9c 100644 --- a/src/mame/sgi/sgi.cpp +++ b/src/mame/sgi/mc.cpp @@ -2,14 +2,14 @@ // copyright-holders:Ryan Holtz /********************************************************************* - sgi.c + mc.cpp Silicon Graphics MC (Memory Controller) code *********************************************************************/ #include "emu.h" -#include "sgi.h" +#include "mc.h" #define LOG_UNKNOWN (1U << 1) #define LOG_READS (1U << 2) diff --git a/src/mame/sgi/sgi.h b/src/mame/sgi/mc.h similarity index 97% rename from src/mame/sgi/sgi.h rename to src/mame/sgi/mc.h index 08e1411d16a..2ab777fe4ce 100644 --- a/src/mame/sgi/sgi.h +++ b/src/mame/sgi/mc.h @@ -2,14 +2,14 @@ // copyright-holders:Ryan Holtz /********************************************************************* - sgi.h + mc.h Silicon Graphics MC (Memory Controller) code *********************************************************************/ -#ifndef MAME_SGI_SGI_H -#define MAME_SGI_SGI_H +#ifndef MAME_SGI_MC_H +#define MAME_SGI_MC_H #pragma once @@ -115,4 +115,4 @@ private: DECLARE_DEVICE_TYPE(SGI_MC, sgi_mc_device) -#endif // MAME_SGI_SGI_H +#endif // MAME_SGI_MC_H