Fixed operator overload in interrupt descriptor

This commit is contained in:
2020-07-17 12:31:21 -05:00
parent 999b290feb
commit 15f7a3663c

View File

@@ -59,4 +59,5 @@ void* kernel::InterruptDescriptor::operator=(void* rhs)
uint32_t offset = (uint32_t) rhs; uint32_t offset = (uint32_t) rhs;
m_offset1 = (uint16_t) offset; m_offset1 = (uint16_t) offset;
m_offset2 = (offset >> 16); m_offset2 = (offset >> 16);
return rhs;
} }