Fix missing declaration of VPC device and other issues

This commit is contained in:
RichardG867
2020-07-24 13:47:25 -03:00
parent ca12c8f757
commit bf97498626
3 changed files with 2 additions and 2 deletions

View File

@@ -129,7 +129,6 @@ static void
vpc2007_write(uint16_t port, uint8_t val, void *priv)
{
vpc2007_t *dev = (vpc2007_t *) priv;
uint32_t seg;
switch (port) {
case 0x440:

View File

@@ -71,6 +71,7 @@ extern const device_t piix4e_device;
extern const device_t slc90e66_device;
extern const device_t ioapic_device;
extern const device_t vpc2007_device;
/* OPTi */
extern const device_t opti283_device;

View File

@@ -648,7 +648,7 @@ MCHOBJ := machine.o machine_table.o \
m_at_socket4_5.o m_at_socket7_s7.o m_at_sockets7.o \
m_at_socket8.o m_at_slot1.o m_at_slot2.o m_at_socket370.o
DEVOBJ := bugger.o hwm.o hwm_lm75.o hwm_lm78.o hwm_gl518sm.o ibm_5161.o isamem.o isartc.o lpt.o postcard.o vpc2007.o serial.o \
DEVOBJ := bugger.o hwm.o hwm_lm75.o hwm_lm78.o hwm_gl518sm.o ibm_5161.o isamem.o isartc.o lpt.o postcard.o serial.o \
smbus.o smbus_piix4.o \
keyboard.o \
keyboard_xt.o keyboard_at.o \