1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 12:08:14 +00:00

Kernel: Use a constexpr declaration for the disabled PIC IRQ base

This commit is contained in:
Liav A 2022-01-29 15:38:29 +02:00 committed by Idan Horowitz
parent ab976667c4
commit 7028a64997
2 changed files with 4 additions and 1 deletions

View file

@ -10,6 +10,9 @@
#include <Kernel/Interrupts/IRQController.h>
namespace Kernel {
static constexpr size_t pic_disabled_vector_base = 0x20;
class PIC final : public IRQController {
public:
PIC();