-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Labels
bugSomething isn't workingSomething isn't working
Description
RVM-Tutorial/hypervisor/src/arch/x86_64/lapic.rs
Lines 22 to 26 in 7687541
| 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); Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working