[Kernel] More address arbiter stuff

This commit is contained in:
wheremyfoodat 2022-09-20 01:30:45 +03:00
parent 8bfa29568a
commit 11d8a43bd8
3 changed files with 39 additions and 23 deletions

View file

@ -2,9 +2,9 @@
const char* Kernel::resetTypeToString(u32 type) {
switch (type) {
case 0: return "RESET_ONESHOT";
case 1: return "RESET_STICKY";
case 2: return "RESET_PULSE";
case 0: return "One shot";
case 1: return "Sticky";
case 2: return "Pulse";
default: return "Invalid";
}
}