add: %u, %p, %x to kprintf

This commit is contained in:
2024-09-19 18:00:18 +02:00
parent 4cc1dba5f9
commit 96179d996d
4 changed files with 46 additions and 20 deletions

6
headers/base.h Normal file
View File

@ -0,0 +1,6 @@
#pragma once
#define BASE_BIN "01"
#define BASE_OCTA BASE_BIN "234567"
#define BASE_DECA BASE_OCTA "89"
#define BASE_HEXA BASE_DECA "abcdef"