2016-01-27 09:11:59 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Support.h"
|
2021-02-28 10:40:18 +00:00
|
|
|
#include <string> // Needed for stl string (std::string)
|
2016-01-27 09:11:59 +00:00
|
|
|
#include <float.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include "UserInterface.h"
|
|
|
|
#include <Project64-core/N64System/N64Types.h>
|
|
|
|
|
2021-04-14 05:34:15 +00:00
|
|
|
#include <Project64-core/N64System/Profiling.h>
|
2016-01-27 09:11:59 +00:00
|
|
|
|
2021-02-28 10:40:18 +00:00
|
|
|
// General MIPS information
|
|
|
|
|
2021-04-14 05:34:15 +00:00
|
|
|
#include <Project64-core/N64System/N64Rom.h>
|
|
|
|
#include <Project64-core/N64System/SpeedLimiter.h>
|
2022-07-18 08:31:00 +00:00
|
|
|
#include <Project64-core/N64System/Mips/R4300iOpcode.h>
|
2016-06-27 10:54:53 +00:00
|
|
|
#include <Project64-core/N64System/Recompiler/x86/x86ops.h>
|
2021-04-14 05:34:15 +00:00
|
|
|
#include <Project64-core/N64System/N64System.h>
|
2016-01-27 09:11:59 +00:00
|
|
|
#include <Project64-core/N64System/SystemGlobals.h>
|