pcdrv.h (488B)
1 // SPDX-FileCopyrightText: 2023-2024 Connor McLaughlin <stenzek@gmail.com> 2 // SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0) 3 4 #pragma once 5 6 #include "cpu_types.h" 7 8 ////////////////////////////////////////////////////////////////////////// 9 // HLE Implementation of PCDrv 10 ////////////////////////////////////////////////////////////////////////// 11 12 namespace PCDrv { 13 void Initialize(); 14 void Reset(); 15 void Shutdown(); 16 17 bool HandleSyscall(u32 instruction_bits, CPU::Registers& regs); 18 }