diff options
| author | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-07 09:23:23 +0200 |
|---|---|---|
| committer | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-07 09:23:23 +0200 |
| commit | 4cceb09f45b5bd8efa15927fb9a33d0347369709 (patch) | |
| tree | 55344ecf9c03f19de51ea9ecdb24fe40de197024 /dev/ZKA/HALKit | |
| parent | 1003d7a20bab6885b4edde7d11103a199de30d21 (diff) | |
[ IMP ] Found issue, address of HangCPU isn't in paged area, so it doesn't really work well.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/ZKA/HALKit')
| -rw-r--r-- | dev/ZKA/HALKit/AMD64/HalProcessor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ZKA/HALKit/AMD64/HalProcessor.cxx b/dev/ZKA/HALKit/AMD64/HalProcessor.cxx index dd9afd47..b80e7618 100644 --- a/dev/ZKA/HALKit/AMD64/HalProcessor.cxx +++ b/dev/ZKA/HALKit/AMD64/HalProcessor.cxx @@ -34,7 +34,7 @@ namespace Kernel::HAL if ((*pd_entry & 0x01) == 0) { - *pd_entry |= 0x01; + ke_stop(RUNTIME_CHECK_PAGE); } UInt64 pt_base = *pd_entry & ~0xFFF; // Remove flags |
