(Creeper): Rectifies the filenames

This commit is contained in:
Correia 2024-05-07 19:51:59 -03:00
parent d1257a5afa
commit 518d26c07f
11 changed files with 14 additions and 14 deletions

View File

@ -44,10 +44,10 @@ target_sources(cosmic PRIVATE
${COSMIC_DIR}/creeper/fastmem.cpp
${COSMIC_DIR}/creeper/psx/iop_interpreter.cpp
${COSMIC_DIR}/creeper/psx/psx_ep1.cpp
${COSMIC_DIR}/creeper/ee/iv_addons_fpu.cpp
${COSMIC_DIR}/creeper/ee/iv_cached.cpp
${COSMIC_DIR}/creeper/ee/iv_opcodes.cpp
${COSMIC_DIR}/creeper/ee/iv_mips.cpp
${COSMIC_DIR}/creeper/ee/addons_fpu.cpp
${COSMIC_DIR}/creeper/ee/cached_blocks.cpp
${COSMIC_DIR}/creeper/ee/deco_opc.cpp
${COSMIC_DIR}/creeper/ee/more_special.cpp
${COSMIC_DIR}/creeper/ee/iv_special.cpp
${COSMIC_DIR}/creeper/ee/iv_math.cpp
${COSMIC_DIR}/creeper/ee/iv_cop.cpp

View File

@ -1,6 +1,6 @@
// SPDX-short-identifier: MIT, Version N/A
// This file is protected by the MIT license (please refer to LICENSE.md before making any changes, copying, or redistributing this software)
#include <creeper/ee/iv_cached.h>
#include <creeper/ee/cached_blocks.h>
#include <engine/ee_core.h>
#include <common/global.h>

View File

@ -2,7 +2,7 @@
// This file is protected by the MIT license (please refer to LICENSE.md before making any changes, copying, or redistributing this software)
#include <range/v3/algorithm.hpp>
#include <creeper/ee/iv_cached.h>
#include <creeper/ee/cached_blocks.h>
#include <common/global.h>
#include <vm/emu_vm.h>
#include <engine/ee_core.h>

View File

@ -1,7 +1,7 @@
// SPDX-short-identifier: MIT, Version N/A
// This file is protected by the MIT license (please refer to LICENSE.md before making any changes, copying, or redistributing this software)
#include <common/global.h>
#include <creeper/ee/iv_cached.h>
#include <creeper/ee/cached_blocks.h>
#include <engine/ee_core.h>
namespace cosmic::creeper::ee {

View File

@ -1,6 +1,6 @@
// SPDX-short-identifier: MIT, Version N/A
// This file is protected by the MIT license (please refer to LICENSE.md before making any changes, copying, or redistributing this software)
#include <creeper/ee/iv_cached.h>
#include <creeper/ee/cached_blocks.h>
#include <engine/ee_core.h>
namespace cosmic::creeper::ee {
void MipsIvInterpreter::tlbr(Operands ops) {

View File

@ -1,5 +1,5 @@
#include <creeper/ee/iv_cached.h>
#include <creeper/ee/iv_macros.h>
#include <creeper/ee/cached_blocks.h>
#include <creeper/ee/fast_macros.h>
#include <engine/ee_core.h>
#include <console/backdoor.h>

View File

@ -1,5 +1,5 @@
#include <creeper/ee/iv_cached.h>
#include <creeper/ee/iv_macros.h>
#include <creeper/ee/cached_blocks.h>
#include <creeper/ee/fast_macros.h>
#include <engine/ee_core.h>
#include <console/backdoor.h>
#include <vm/emu_vm.h>

View File

@ -1,4 +1,4 @@
#include <creeper/ee/iv_cached.h>
#include <creeper/ee/cached_blocks.h>
#include <engine/ee_core.h>
#include <vm/emu_vm.h>

View File

@ -3,7 +3,7 @@
#include <engine/ee_core.h>
#include <engine/copctrl/cop0.h>
#include <creeper/ee/iv_cached.h>
#include <creeper/ee/cached_blocks.h>
#include <fishron/ee2arm/jitter_arm64_ee.h>
#include <console/virt_devices.h>
namespace cosmic::engine {