early-access version 2774

main
pineappleEA 2022-06-12 03:02:04 +02:00
parent 065059f75c
commit 56fe0601ae
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 2773.
This is the source code for early-access 2774.
## Legal Notice

View File

@ -15,6 +15,7 @@ namespace Core {
class GDBStubArch {
public:
virtual ~GDBStubArch() = default;
virtual std::string GetTargetXML() const = 0;
virtual std::string RegRead(const Kernel::KThread* thread, size_t id) const = 0;
virtual void RegWrite(Kernel::KThread* thread, size_t id, std::string_view value) const = 0;