From eb0e591b25eed835729b584addef016cf10d377a Mon Sep 17 00:00:00 2001 From: MadMaurice Date: Tue, 29 Aug 2023 23:15:00 +0200 Subject: [PATCH] Move panic.h to misc --- cpu/cpu.cpp | 2 +- cpu/decoder.cpp | 2 +- {cpu => misc}/panic.h | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {cpu => misc}/panic.h (100%) diff --git a/cpu/cpu.cpp b/cpu/cpu.cpp index 5e44ada..4d29218 100644 --- a/cpu/cpu.cpp +++ b/cpu/cpu.cpp @@ -1,5 +1,5 @@ #include -#include +#include void Cpu_state::setAF(u16 v) { diff --git a/cpu/decoder.cpp b/cpu/decoder.cpp index 997f746..87c2d37 100644 --- a/cpu/decoder.cpp +++ b/cpu/decoder.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include static inline u16 make_u16(u8 msb, u8 lsb) diff --git a/cpu/panic.h b/misc/panic.h similarity index 100% rename from cpu/panic.h rename to misc/panic.h