Network Virtio and RTL8139 NIC support

This commit is contained in:
boreddevnl
2026-03-14 16:52:52 +01:00
parent 95c465ca39
commit b05b221c41
16 changed files with 674 additions and 52 deletions

9
src/kernel/nic_netif.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef NIC_NETIF_H
#define NIC_NETIF_H
#include "lwip/netif.h"
err_t nic_netif_init(struct netif *netif);
void nic_netif_poll(struct netif *netif);
#endif