CPU: HLE implementation of PCDrv (host file access)

This commit is contained in:
Stenzek
2023-04-29 20:45:39 +10:00
parent 5439718ec3
commit 84e5fbe0c6
13 changed files with 430 additions and 5 deletions

18
src/core/pcdrv.h Normal file
View File

@ -0,0 +1,18 @@
// SPDX-FileCopyrightText: 2023 Connor McLaughlin <stenzek@gmail.com>
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
#pragma once
#include "cpu_types.h"
#include "types.h"
//////////////////////////////////////////////////////////////////////////
// HLE Implementation of PCDrv
//////////////////////////////////////////////////////////////////////////
namespace PCDrv {
void Initialize();
void Reset();
void Shutdown();
bool HandleSyscall(u32 instruction_bits, CPU::Registers& regs);
}