blob: 11b94e57b84c00924a513c35bbfd12003909313d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// MIT License, Copyright (c) 2020 Marvin Borner
#ifndef NET_H
#define NET_H
#define RTL8139_VENDOR_ID 0x10ec
#define RTL8139_DEVICE_ID 0x8139
void net_install();
#endif
|