Match renamed I/O register helpers
Some checks failed
Builds / ExectOS (amd64, release) (push) Failing after 21s
Builds / ExectOS (amd64, debug) (push) Failing after 23s
Builds / ExectOS (i686, debug) (push) Failing after 20s
Builds / ExectOS (i686, release) (push) Failing after 20s

This commit is contained in:
2025-09-11 19:08:20 +02:00
parent 744fffdd8a
commit 3395934330

View File

@@ -46,7 +46,7 @@ HlReadApicRegister(IN APIC_REGISTER Register)
else
{
/* Read from xAPIC */
return RtlReadRegisterLong((PULONG)(APIC_BASE + (Register << 4)));
return HlReadRegister32((PULONG)(APIC_BASE + (Register << 4)));
}
}
@@ -91,7 +91,7 @@ HlWriteApicRegister(IN APIC_REGISTER Register,
else
{
/* Write to xAPIC */
RtlWriteRegisterLong((PULONG)(APIC_BASE + (Register << 4)), Value);
HlWriteRegister32((PULONG)(APIC_BASE + (Register << 4)), Value);
}
}