summaryrefslogtreecommitdiffhomepage
path: root/dev/zka/ArchKit
diff options
context:
space:
mode:
Diffstat (limited to 'dev/zka/ArchKit')
-rw-r--r--dev/zka/ArchKit/ArchKit.hxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/dev/zka/ArchKit/ArchKit.hxx b/dev/zka/ArchKit/ArchKit.hxx
index 3c617705..e52eeabf 100644
--- a/dev/zka/ArchKit/ArchKit.hxx
+++ b/dev/zka/ArchKit/ArchKit.hxx
@@ -56,30 +56,6 @@ namespace Kernel
{
return *(volatile UInt32*)((UInt64)base + reg);
}
-
- /// @brief Print a region of memory.
- /// @param start
- /// @param length
- inline Void ke_print_raw_memory(const void* start, Size length)
- {
- const UInt8* ptr = (const UInt8*)start;
-
- for (Size i = 0; i < length; i++)
- {
- if (i % 16 == 0)
- {
- kcout << hex_number((UIntPtr)ptr + i);
- }
- else
- {
- kcout << hex_number(ptr[i]);
- }
-
- kcout << " ";
- }
-
- kcout << "\r";
- }
} // namespace Kernel
#define kKernelMaxSystemCalls (256)