connectToPort stub, acknowledge configuration memory
This commit is contained in:
10
include/kernel/config_mem.hpp
Normal file
10
include/kernel/config_mem.hpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#pragma once
|
||||
#include "helpers.hpp"
|
||||
|
||||
// Configuration memory addresses
|
||||
namespace ConfigMem {
|
||||
enum : u32 {
|
||||
KernelVersionMinor = 0x1FF80002,
|
||||
KernelVersionMajor = 0x1FF80003
|
||||
};
|
||||
}
|
||||
@@ -59,6 +59,7 @@ class Kernel {
|
||||
void getResourceLimitLimitValues();
|
||||
void getResourceLimitCurrentValues();
|
||||
void svcCloseHandle();
|
||||
void connectToPort();
|
||||
|
||||
public:
|
||||
Kernel(std::array<u32, 16>& regs, Memory& mem) : regs(regs), mem(mem), handleCounter(0) {
|
||||
|
||||
Reference in New Issue
Block a user