pureikyubu/SRC/GX/pch.h
2020-08-24 23:53:57 +03:00

31 lines
565 B
C++

#pragma once
#include <cstdint>
#include <string>
#include <vector>
#include <list>
#include <map>
#include <cassert>
#include <atomic>
#include <string.h>
#include "../Common/ByteSwap.h"
#include "../Common/Spinlock.h"
#include "../Common/Thread.h"
#include "../Common/Json.h"
#include "../Common/Jdi.h"
#include "GXCore.h"
#include "GXCommands.h"
#include "../Debugger/Debugger.h"
#include "../GekkoCore/Gekko.h"
#include "../DSP/DSP.h"
#include "../Hardware/HWConfig.h"
#include "../Hardware/HW.h"
#include "../Hardware/MI.h"
#include "../Hardware/PI.h"