duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

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 }