commit
c7b593eba3
|
@ -7,12 +7,24 @@
|
|||
#include <sys/mman.h>
|
||||
#endif
|
||||
|
||||
#if !defined(_WIN64)
|
||||
enum PosixPageProtection
|
||||
{
|
||||
PAGE_NOACCESS = 0,
|
||||
PAGE_READONLY = PROT_READ,
|
||||
PAGE_READWRITE = PROT_READ | PROT_WRITE,
|
||||
PAGE_EXECUTE = PROT_EXEC,
|
||||
PAGE_EXECUTE_READ = PROT_EXEC | PROT_READ,
|
||||
PAGE_EXECUTE_READWRITE = PROT_EXEC | PROT_READ | PROT_WRITE
|
||||
};
|
||||
#endif
|
||||
|
||||
#include "../Util/Log.h"
|
||||
|
||||
namespace Memory
|
||||
{
|
||||
namespace VirtualMemory {
|
||||
static DWORD convertMemoryMode(MemoryMode mode)
|
||||
static u32 convertMemoryMode(MemoryMode mode)
|
||||
{
|
||||
switch (mode)
|
||||
{
|
||||
|
|
|
@ -5,7 +5,10 @@ namespace HLE::Libs::LibC {
|
|||
|
||||
static void init_env() //every game/demo should probably
|
||||
{
|
||||
__debugbreak();//if we reach here it will be a great progress :D
|
||||
for(;;) {
|
||||
printf("__debugbreak\n");
|
||||
}
|
||||
//__debugbreak();//if we reach here it will be a great progress :D
|
||||
}
|
||||
|
||||
void LibC_RegisterFunc(SymbolsResolver* sym)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "../Types.h"
|
||||
#include "../types.h"
|
||||
|
||||
namespace Lib {
|
||||
class Timer final
|
||||
|
|
|
@ -33,7 +33,10 @@
|
|||
// Main code
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
|
||||
if (argc == 1) {
|
||||
printf("Usage: %s <module path>\n", argv[0]);
|
||||
return -1;
|
||||
}
|
||||
|
||||
logging::init(true);//init logging
|
||||
const char* const path = argv[1]; //argument 1 is the path of self file to boot
|
||||
|
|
Loading…
Reference in New Issue