Skip to content

Commit

Permalink
Fixed a bug in the io port numbers used in the kernel test
Browse files Browse the repository at this point in the history
  • Loading branch information
ergo720 committed Sep 2, 2023
1 parent 95cf23f commit b6d5c59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit b6d5c59

Please sign in to comment.