Skip to content

Commit

Permalink
[logging] Remove iostream Includes & Update fmt to 11.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Xphalnos committed Jan 30, 2025
1 parent 1026e23 commit 4053cfd
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 21 deletions.
1 change: 0 additions & 1 deletion Xenon/Core/RootBus/HostBridge/PCIBridge/PCIBridge.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

#pragma once

#include <iostream>
#include <vector>

#include "PCIDevice.h"
Expand Down
3 changes: 0 additions & 3 deletions Xenon/Core/RootBus/HostBridge/PCIBridge/SMC/SMC.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
#pragma once

#include <Windows.h>
#include <iostream>
#include <stdio.h>
#include <tchar.h>
#include <thread>
#include <vector>

Expand Down
4 changes: 1 addition & 3 deletions Xenon/Core/RootBus/RootBus.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
// Copyright 2025 Xenon Emulator Project

#include <iostream>

#include "RootBus.h"
#include "Base/Logging/Log.h"
#include "RootBus.h"

#define PCI_CONFIG_SPACE_BEGIN 0xD0000000
#define PCI_CONFIG_SPACE_END 0xD1000000
Expand Down
4 changes: 1 addition & 3 deletions Xenon/Core/XCPU/Interpreter/PPCInterpreter.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
// Copyright 2025 Xenon Emulator Project

#include <iostream>

#include "PPCInterpreter.h"
#include "Base/Logging/Log.h"
#include "PPCInterpreter.h"

// Forward Declaration
XENON_CONTEXT *PPCInterpreter::intXCPUContext = nullptr;
Expand Down
5 changes: 1 addition & 4 deletions Xenon/Core/XCPU/Interpreter/PPC_ALU.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
// Copyright 2025 Xenon Emulator Project

#include <iostream>
#include <stdlib.h>

#include "PPCInterpreter.h"
#include "Base/Logging/Log.h"
#include "PPCInterpreter.h"

#define GPR(x) hCore->ppuThread[hCore->currentThread].GPR[x]
#define XER_SET_CA(v) hCore->ppuThread[hCore->currentThread].SPR.XER.CA = v
Expand Down
4 changes: 1 addition & 3 deletions Xenon/Core/XCPU/Interpreter/PPC_Instruction.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
// Copyright 2025 Xenon Emulator Project

#include <iostream>

#include "Base/Logging/Log.h"
#include "PPCInterpreter.h"
#include "PPC_Instruction.h"
#include "Base/Logging/Log.h"

PPCInstruction PPCInterpreter::getOpcode(u32 instrData) {
u32 OPCD = ExtractBits(instrData, 0, 5);
Expand Down
1 change: 0 additions & 1 deletion Xenon/Core/XCPU/Interpreter/PPC_LS.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright 2025 Xenon Emulator Project

#include <assert.h>
#include <iostream>

#include "PPCInterpreter.h"

Expand Down
2 changes: 0 additions & 2 deletions Xenon/Core/XCPU/PostBus/PostBus.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
// Copyright 2025 Xenon Emulator Project

#include <iostream>

#include "PostBus.h"
#include "Base/Logging/Log.h"

Expand Down

0 comments on commit 4053cfd

Please sign in to comment.