Skip to content

Wrong port number used when disable i8259 PIC #4

Description

@equation314

unsafe {
// Disable 8259A interrupt controllers
Port::<u8>::new(0x20).write(0xff);
Port::<u8>::new(0xA0).write(0xff);
}

Should be

 Port::<u8>::new(0x21).write(0xff); 
 Port::<u8>::new(0xA1).write(0xff); 

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions