Skip to content

Commit

Permalink
Rename directory
Browse files Browse the repository at this point in the history
  • Loading branch information
petschau committed Nov 4, 2023
1 parent fe10b43 commit bd80345
Show file tree
Hide file tree
Showing 16 changed files with 45 additions and 45 deletions.
6 changes: 3 additions & 3 deletions fellow/SRC/WinFellow.Core/DebugApi/DebugVM.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "Debug/DebugVM.h"
#include "Debug/M68K.h"
#include "Debug/MemorySystem.h"
#include "DebugApi/DebugVM.h"
#include "DebugApi/M68K.h"
#include "DebugApi/MemorySystem.h"

namespace Debug
{
Expand Down
4 changes: 2 additions & 2 deletions fellow/SRC/WinFellow.Core/DebugApi/DebugVM.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include "Debug/IM68K.h"
#include "Debug/IMemorySystem.h"
#include "DebugApi/IM68K.h"
#include "DebugApi/IMemorySystem.h"

namespace Debug
{
Expand Down
2 changes: 1 addition & 1 deletion fellow/SRC/WinFellow.Core/DebugApi/M68K.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "Debug/IM68K.h"
#include "DebugApi/IM68K.h"

namespace Debug
{
Expand Down
2 changes: 1 addition & 1 deletion fellow/SRC/WinFellow.Core/DebugApi/MemorySystem.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "Debug/IMemorySystem.h"
#include "DebugApi/IMemorySystem.h"

namespace Debug
{
Expand Down
2 changes: 1 addition & 1 deletion fellow/SRC/WinFellow.Core/VirtualHost/Core.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "CustomChipset/RegisterUtility.h"
#include "IO/Uart.h"
#include "IO/RtcOkiMsm6242rs.h"
#include "Debug/DebugVM.h"
#include "DebugApi/DebugVM.h"

class Core
{
Expand Down
12 changes: 6 additions & 6 deletions fellow/SRC/WinFellow.Core/WinFellow.Core.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
<ClInclude Include="CustomChipset\Sound\Sound.h" />
<ClInclude Include="CustomChipset\Sound\SoundConfiguration.h" />
<ClInclude Include="CustomChipset\Sound\WavFileWriter.h" />
<ClInclude Include="Debug\IM68K.h" />
<ClInclude Include="Debug\IMemorySystem.h" />
<ClInclude Include="Debug\M68K.h" />
<ClInclude Include="Debug\MemorySystem.h" />
<ClInclude Include="Debug\DebugVM.h" />
<ClInclude Include="DebugApi\DebugVM.h" />
<ClInclude Include="DebugApi\IM68K.h" />
<ClInclude Include="DebugApi\IMemorySystem.h" />
<ClInclude Include="DebugApi\M68K.h" />
<ClInclude Include="DebugApi\MemorySystem.h" />
<ClInclude Include="Defs.h" />
<ClInclude Include="Driver\Drivers.h" />
<ClInclude Include="Driver\ISoundDriver.h" />
Expand All @@ -62,7 +62,7 @@
<ItemGroup>
<ClCompile Include="CustomChipset\Registers.cpp" />
<ClCompile Include="CustomChipset\RegisterUtility.cpp" />
<ClCompile Include="Debug\DebugVM.cpp" />
<ClCompile Include="DebugApi\DebugVM.cpp" />
<ClCompile Include="IO\RtcOkiMsm6242rs.cpp" />
<ClCompile Include="Module\Hardfile\HardfileConfiguration.cpp" />
<ClCompile Include="Module\Hardfile\HardfileGeometry.cpp" />
Expand Down
26 changes: 13 additions & 13 deletions fellow/SRC/WinFellow.Core/WinFellow.Core.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<Filter Include="Module\Hardfile">
<UniqueIdentifier>{32917180-f62e-4787-b4fc-e1387ca91014}</UniqueIdentifier>
</Filter>
<Filter Include="Debug">
<Filter Include="DebugApi">
<UniqueIdentifier>{82fb5aee-8c48-4c42-8bdd-d9dc76624636}</UniqueIdentifier>
</Filter>
</ItemGroup>
Expand Down Expand Up @@ -110,20 +110,20 @@
<ClInclude Include="Service\IRetroPlatform.h">
<Filter>Service</Filter>
</ClInclude>
<ClInclude Include="Debug\IM68K.h">
<Filter>Debug</Filter>
<ClInclude Include="DebugApi\DebugVM.h">
<Filter>DebugApi</Filter>
</ClInclude>
<ClInclude Include="Debug\IMemorySystem.h">
<Filter>Debug</Filter>
<ClInclude Include="DebugApi\IM68K.h">
<Filter>DebugApi</Filter>
</ClInclude>
<ClInclude Include="Debug\M68K.h">
<Filter>Debug</Filter>
<ClInclude Include="DebugApi\IMemorySystem.h">
<Filter>DebugApi</Filter>
</ClInclude>
<ClInclude Include="Debug\MemorySystem.h">
<Filter>Debug</Filter>
<ClInclude Include="DebugApi\M68K.h">
<Filter>DebugApi</Filter>
</ClInclude>
<ClInclude Include="Debug\DebugVM.h">
<Filter>Debug</Filter>
<ClInclude Include="DebugApi\MemorySystem.h">
<Filter>DebugApi</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -154,8 +154,8 @@
<ClCompile Include="Module\Hardfile\HardfileConfiguration.cpp">
<Filter>Module\Hardfile</Filter>
</ClCompile>
<ClCompile Include="Debug\DebugVM.cpp">
<Filter>Debug</Filter>
<ClCompile Include="DebugApi\DebugVM.cpp">
<Filter>DebugApi</Filter>
</ClCompile>
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions fellow/SRC/WinFellow.Hardfile/hardfile/HardfileHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#include <string>
#include <vector>
#include "Module/Hardfile/IHardfileHandler.h"
#include "Debug/IMemorySystem.h"
#include "Debug/IM68K.h"
#include "DebugApi/IMemorySystem.h"
#include "DebugApi/IM68K.h"
#include "Service/ILog.h"
#include "hardfile/HardfileStructs.h"

Expand Down Expand Up @@ -128,7 +128,7 @@ namespace fellow::hardfile
void Startup() override;
void Shutdown() override;

HardfileHandler(Debug::IMemorySystem& memory, Debug::IM68K& cpu, Service::ILog& log);
HardfileHandler(Debug::IMemorySystem &memory, Debug::IM68K &cpu, Service::ILog &log);
virtual ~HardfileHandler();
};
}
2 changes: 1 addition & 1 deletion fellow/SRC/WinFellow.Hardfile/hardfile/HardfileStructs.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "hardfile/HardfileStructs.h"
#include "Debug/IMemorySystem.h"
#include "DebugApi/IMemorySystem.h"

using namespace Debug;
using namespace fellow::hardfile::rdb;
Expand Down
4 changes: 2 additions & 2 deletions fellow/SRC/WinFellow.Hardfile/hardfile/HardfileStructs.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include "Module/Hardfile/IHardfileHandler.h"
#include "Debug/IMemorySystem.h"
#include "DebugApi/IMemorySystem.h"
#include "hardfile/rdb/RDB.h"

namespace fellow::hardfile
Expand Down Expand Up @@ -41,7 +41,7 @@ namespace fellow::hardfile
uint32_t GetVersion();
void CopyHunkToAddress(uint32_t destinationAddress, uint32_t hunkIndex);

HardfileFileSystemEntry(Debug::IMemorySystem& memory, rdb::RDBFileSystemHeader *header, uint32_t segListAddress);
HardfileFileSystemEntry(Debug::IMemorySystem &memory, rdb::RDBFileSystemHeader *header, uint32_t segListAddress);
};

class HardfileDevice
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "Debug/IMemorySystem.h"
#include "DebugApi/IMemorySystem.h"
#include "hardfile/hunks/FileImage.h"
#include "hardfile/hunks/Reloc32Hunk.h"

Expand Down
2 changes: 1 addition & 1 deletion fellow/SRC/WinFellow/DebugApi/M68K.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "Debug/M68K.h"
#include "DebugApi/M68K.h"
#include "CpuModule_Internal.h"

namespace Debug
Expand Down
2 changes: 1 addition & 1 deletion fellow/SRC/WinFellow/DebugApi/MemorySystem.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "Debug/MemorySystem.h"
#include "DebugApi/MemorySystem.h"
#include "FMEM.H"

namespace Debug
Expand Down
4 changes: 2 additions & 2 deletions fellow/SRC/WinFellow/VirtualHost/CoreFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

#include "Windows/Service/FileopsWin32.h"

#include "Debug/M68K.h"
#include "Debug/MemorySystem.h"
#include "DebugApi/M68K.h"
#include "DebugApi/MemorySystem.h"

using namespace Service;
using namespace Debug;
Expand Down
4 changes: 2 additions & 2 deletions fellow/SRC/WinFellow/WinFellow.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,8 @@ PowerShell.exe ..\build\Scripts\GitWCRev.ps1 -InputFileName GUI_versioninfo-wcre
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="C\WavFileWriter.cpp" />
<ClCompile Include="Debug\M68K.cpp" />
<ClCompile Include="Debug\MemorySystem.cpp" />
<ClCompile Include="DebugApi\M68K.cpp" />
<ClCompile Include="DebugApi\MemorySystem.cpp" />
<ClCompile Include="VirtualHost\CoreFactory.cpp" />
<ClCompile Include="Windows\Driver\Sound\DirectSoundDriver.cpp" />
<ClCompile Include="Windows\Service\FileopsWin32.cpp" />
Expand Down
10 changes: 5 additions & 5 deletions fellow/SRC/WinFellow/WinFellow.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<Filter Include="Windows\Driver\Sound">
<UniqueIdentifier>{d3362cca-2d02-4d07-8940-1a7b0be5fb67}</UniqueIdentifier>
</Filter>
<Filter Include="Debug">
<Filter Include="DebugApi">
<UniqueIdentifier>{f4c581b1-69af-4198-938c-5825eab5edbf}</UniqueIdentifier>
</Filter>
</ItemGroup>
Expand Down Expand Up @@ -450,11 +450,11 @@
<ClCompile Include="Windows\Service\RetroPlatformWrapper.cpp">
<Filter>Windows\Service</Filter>
</ClCompile>
<ClCompile Include="Debug\M68K.cpp">
<Filter>Debug</Filter>
<ClCompile Include="DebugApi\M68K.cpp">
<Filter>DebugApi</Filter>
</ClCompile>
<ClCompile Include="Debug\MemorySystem.cpp">
<Filter>Debug</Filter>
<ClCompile Include="DebugApi\MemorySystem.cpp">
<Filter>DebugApi</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit bd80345

Please sign in to comment.