From 0f8fa8a30d43482e77206531202d676a1436a6e2 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sun, 1 Apr 2018 19:14:27 +1000 Subject: [PATCH] hopefully purge references to emu_fatalerror from ppc_dasm.o (nw) --- src/devices/cpu/powerpc/ppc_dasm.cpp | 1 + src/devices/cpu/powerpc/ppccom.h | 10 +++------- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/src/devices/cpu/powerpc/ppc_dasm.cpp b/src/devices/cpu/powerpc/ppc_dasm.cpp index 50b015b1aff..aad939efffe 100644 --- a/src/devices/cpu/powerpc/ppc_dasm.cpp +++ b/src/devices/cpu/powerpc/ppc_dasm.cpp @@ -17,6 +17,7 @@ #include "emu.h" #include "ppc_dasm.h" + #include "ppccom.h" diff --git a/src/devices/cpu/powerpc/ppccom.h b/src/devices/cpu/powerpc/ppccom.h index ecd8e87000c..97c0661afac 100644 --- a/src/devices/cpu/powerpc/ppccom.h +++ b/src/devices/cpu/powerpc/ppccom.h @@ -7,14 +7,11 @@ Common PowerPC definitions and functions ***************************************************************************/ +#ifndef MAME_CPU_POWERPPC_PPCCOM_H +#define MAME_CPU_POWERPPC_PPCCOM_H #pragma once -#ifndef __PPCCOM_H__ -#define __PPCCOM_H__ - -#include "ppc.h" - /*************************************************************************** DEBUGGING @@ -478,5 +475,4 @@ enum extern offs_t ppc_dasm_one(std::ostream &stream, uint32_t pc, uint32_t op); - -#endif /* __PPCCOM_H__ */ +#endif // MAME_CPU_POWERPPC_PPCCOM_H