mirror of https://github.com/stenzek/duckstation
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
475 B
C++
19 lines
475 B
C++
// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: CC-BY-NC-ND-4.0
|
|
|
|
#pragma once
|
|
|
|
#include "cpu_types.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
// HLE Implementation of PCDrv
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
namespace PCDrv {
|
|
void Initialize();
|
|
void Reset();
|
|
void Shutdown();
|
|
|
|
bool HandleSyscall(u32 instruction_bits, CPU::Registers& regs);
|
|
}
|