From 499784a824c541001c2fd52ae95eba88dcfc952b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 21 Dec 2019 22:22:03 +0100 Subject: Many debugging/serial improvements Sorry for the little information, but I did many things :) --- src/kernel/net/rtl8139.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/kernel/net/rtl8139.c') diff --git a/src/kernel/net/rtl8139.c b/src/kernel/net/rtl8139.c index de68700..cfddebc 100644 --- a/src/kernel/net/rtl8139.c +++ b/src/kernel/net/rtl8139.c @@ -3,6 +3,7 @@ #include #include #include +#include int rtl_irq = 0; uint8_t mac[6]; @@ -19,14 +20,14 @@ void find_rtl(uint32_t device, uint16_t vendor_id, uint16_t device_id, void *ext void rtl8139_irq_handler(struct regs *r) { - serial_write("RTL INT!\n"); + serial_printf("RTL INT!"); uint16_t status = inw(rtl_iobase + 0x3E); if (!status) return; outw(rtl_iobase + 0x3E, status); if (status & 0x01 || status & 0x02) { while ((inw(rtl_iobase + 0x37) & 0x01) == 0) { - serial_write("RECEIVE\n"); + serial_printf("RECEIVE"); // RECEIVE } } -- cgit v1.2.3