RVM-Tutorial
RVM-Tutorial copied to clipboard
Wrong port number used when disable i8259 PIC
https://github.com/equation314/RVM-Tutorial/blob/7687541241aa80db65e8043b50cfa0593bfcfb84/hypervisor/src/arch/x86_64/lapic.rs#L22-L26
Should be
Port::<u8>::new(0x21).write(0xff);
Port::<u8>::new(0xA1).write(0xff);
Fixed in 95b0675.