mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-11 17:00:37 +00:00
Kernel: Make PAGE_MASK architecture independent
This commit is contained in:
parent
c66f484bce
commit
432a34a496
Notes:
sideshowbarker
2024-07-18 08:53:58 +09:00
Author: https://github.com/Hendiadyoin1 Commit: https://github.com/SerenityOS/serenity/commit/432a34a4961 Pull-request: https://github.com/SerenityOS/serenity/pull/8823 Reviewed-by: https://github.com/gunnarbeutner ✅
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
|||
/* Map IRQ0-15 @ ISR 0x50-0x5F */
|
||||
#define IRQ_VECTOR_BASE 0x50
|
||||
#define GENERIC_INTERRUPT_HANDLERS_COUNT (256 - IRQ_VECTOR_BASE)
|
||||
#define PAGE_MASK ((FlatPtr)0xfffff000u)
|
||||
#define PAGE_MASK (~(FlatPtr)0xfffu)
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
|
|
Loading…
Reference in a new issue