We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In file /src/kernel/arch/i686/i8259.c
/src/kernel/arch/i686/i8259.c
Line 136:
return ((uint16_t)i686_inb(PIC2_COMMAND_PORT)) | (((uint16_t)i686_inb(PIC2_COMMAND_PORT)) << 8);
I am not sure, but doesn't it have to be:
return ((uint16_t)i686_inb(PIC1_COMMAND_PORT)) | (((uint16_t)i686_inb(PIC2_COMMAND_PORT)) << 8);
The same issue on line 143.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In file
/src/kernel/arch/i686/i8259.c
Line 136:
I am not sure, but doesn't it have to be:
The same issue on line 143.
The text was updated successfully, but these errors were encountered: