2020-10-17 01:31:53 -03:00
|
|
|
/*
|
2023-01-06 15:36:05 -05:00
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
2020-10-17 01:31:53 -03:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* This file is part of the 86Box distribution.
|
2020-10-17 01:31:53 -03:00
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* Definitions for the PLIP parallel port network device.
|
2020-10-17 01:31:53 -03:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2023-01-06 15:36:05 -05:00
|
|
|
* Authors: RichardG, <richardg867@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2020 RichardG.
|
2020-10-17 01:31:53 -03:00
|
|
|
*/
|
2022-02-18 19:42:21 -05:00
|
|
|
|
2020-10-17 01:31:53 -03:00
|
|
|
#ifndef NET_PLIP_H
|
2022-09-18 17:15:38 -04:00
|
|
|
#define NET_PLIP_H
|
|
|
|
|
#include <86box/device.h>
|
|
|
|
|
#include <86box/lpt.h>
|
2020-10-17 01:31:53 -03:00
|
|
|
|
|
|
|
|
extern const lpt_device_t lpt_plip_device;
|
2022-09-18 17:15:38 -04:00
|
|
|
extern const device_t plip_device;
|
2020-10-17 01:31:53 -03:00
|
|
|
|
2020-10-17 01:52:46 -03:00
|
|
|
#endif /*NET_PLIP_H*/
|