connectToPort stub, acknowledge configuration memory

This commit is contained in:
wheremyfoodat 2022-09-17 02:02:45 +03:00
parent 8bb494229d
commit aa643c44bb
5 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,10 @@
#pragma once
#include "helpers.hpp"
// Configuration memory addresses
namespace ConfigMem {
enum : u32 {
KernelVersionMinor = 0x1FF80002,
KernelVersionMajor = 0x1FF80003
};
}