mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#pragma once
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// compiler and SDK include files.
|
|
|
|
#include <assert.h>
|
|
#include <cstdint>
|
|
#include <direct.h>
|
|
#include <float.h>
|
|
#include <math.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <windows.h>
|
|
#include <commctrl.h>
|
|
#include <intrin.h>
|
|
#include <tchar.h>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <codecvt>
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Dolwin includes
|
|
|
|
#include "../Common/Spinlock.h"
|
|
#include "../Common/Jdi.h"
|
|
#include "../Common/File.h"
|
|
#include "../Common/String.h"
|
|
#include "../Common/Thread.h"
|
|
|
|
#include "../GekkoCore/Gekko.h"
|
|
#include "../GekkoCore/Interpreter.h"
|
|
#include "../HighLevel/HighLevel.h"
|
|
#include "../Hardware/HWConfig.h"
|
|
#include "../DSP/DspCore.h"
|
|
#include "../DVD/DVD.h"
|
|
#include "../Hardware/HW.h"
|
|
#include "../Hardware/MI.h"
|
|
#include "../Hardware/VI.h"
|
|
#include "../Debugger/Debugger.h"
|
|
|
|
#include "Config.h"
|
|
#include "ExecutableFormat.h"
|
|
#include "Loader.h"
|
|
#include "Emulator.h"
|
|
|
|
#include "../../ThirdParty/fmt/fmt/format.h"
|
|
#include "../../ThirdParty/fmt/fmt/printf.h"
|