Duckstation/src/core/pcdrv.h

19 lines
488 B
C
Raw Normal View History

2024-08-04 04:29:27 +00:00
// SPDX-FileCopyrightText: 2023-2024 Connor McLaughlin <stenzek@gmail.com>
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
#pragma once
2024-08-04 04:29:27 +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);
}