From b6d5c593b6447ab6453c2254967bdf142693a947 Mon Sep 17 00:00:00 2001 From: ergo720 <45463469+ergo720@users.noreply.github.com> Date: Sat, 2 Sep 2023 21:06:11 +0200 Subject: [PATCH] Fixed a bug in the io port numbers used in the kernel test --- test/kernel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/kernel.cpp b/test/kernel.cpp index ea514ab..64892b2 100644 --- a/test/kernel.cpp +++ b/test/kernel.cpp @@ -13,10 +13,10 @@ enum KERNEL_IO { KERNEL_IO_BASE = 0X200, - DBG_STR, + DBG_STR = 0X200, SYS_TYPE, ABORT, - KERNEL_IO_END = ABORT + KERNEL_IO_END }; constexpr size_t KERNEL_IO_SIZE = KERNEL_IO_END - KERNEL_IO_BASE;