[zion] Create a message queue to be shared between the port and channel

This commit is contained in:
Drew Galbraith 2023-06-20 15:29:32 -07:00
parent 1edd5023ce
commit fe1641ac38
7 changed files with 138 additions and 94 deletions

View file

@ -142,7 +142,7 @@ RefPtr<Port> pci1_port;
extern "C" void isr_pci1();
extern "C" void interrupt_pci1(InterruptFrame*) {
dbgln("Interrupt PCI line 1");
pci1_port->Write({});
pci1_port->Write(0, nullptr, 0, nullptr);
SignalEOI();
}