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