From 9cfa6b5d1eed618fa0e67f43adf4003f766caeab Mon Sep 17 00:00:00 2001 From: antifallobst Date: Thu, 2 Mar 2023 17:12:09 +0100 Subject: [PATCH] docs: documented 'memory_hexdump' --- .wiki/Kernel-documentation.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.wiki/Kernel-documentation.md b/.wiki/Kernel-documentation.md index e84c381..a980315 100644 --- a/.wiki/Kernel-documentation.md +++ b/.wiki/Kernel-documentation.md @@ -1252,6 +1252,10 @@ On linux this function is called _free_. #### `memory_allocator_init(base)` - function (void) This initializes the heap, where `memory_allocate` allocates memory. +#### `memory_hexdump(address, num)` - function (void) +Logs **_num_** bytes from **_address_** as 8 byte rows. +The data is represented in hexadecimal and ascii. + ### panic.h Ahhhhh - the kernel is burning!