AT/286 based early (1988) laptop with indestructible magnesium case. Also add emulation of 3 specific Conner HDDs as required by stock 1520 BIOS. It only works with these particular drives and requires them to be somewhat slow or reads will hang. The alternative is to use RomBuster to patch your BIOS. The machine had 3 display options (640x480 plasma or 2 different LCDs). For now we need to use stock CGA with mono amber monitor to get some of the plasma feel. Next step is to add Yamaha V6366 video card support.
79 lines
1.6 KiB
CMake
79 lines
1.6 KiB
CMake
#
|
|
# 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.
|
|
#
|
|
# This file is part of the 86Box distribution.
|
|
#
|
|
# CMake build script.
|
|
#
|
|
# Authors: David Hrdlička, <hrdlickadavid@outlook.com>
|
|
# Jasmine Iwanek, <jriwanek@gmail.com>
|
|
#
|
|
# Copyright 2020-2021 David Hrdlička.
|
|
# Copyright 2024 Jasmine Iwanek.
|
|
#
|
|
|
|
add_library(mch OBJECT
|
|
machine.c
|
|
machine_table.c
|
|
m_xt.c
|
|
m_xt_compaq.c
|
|
m_xt_philips.c
|
|
m_xt_t1000.c
|
|
m_xt_t1000_vid.c
|
|
m_xt_xi8088.c
|
|
m_xt_zenith.c
|
|
m_pcjr.c
|
|
m_amstrad.c
|
|
m_europc.c
|
|
m_elt.c
|
|
m_xt_olivetti.c
|
|
m_tandy.c
|
|
m_v86p.c
|
|
m_at.c
|
|
m_at_commodore.c
|
|
m_at_grid.c
|
|
m_at_t3100e.c
|
|
m_at_t3100e_vid.c
|
|
m_ps1.c
|
|
m_ps1_hdc.c
|
|
m_ps2_isa.c
|
|
m_ps2_mca.c
|
|
m_at_compaq.c
|
|
m_at_286_386sx.c
|
|
m_at_386dx_486.c
|
|
m_at_socket4.c
|
|
m_at_socket5.c
|
|
m_at_socket7_3v.c
|
|
m_at_socket7.c
|
|
m_at_sockets7.c
|
|
m_at_socket8.c
|
|
m_at_slot1.c
|
|
m_at_slot2.c
|
|
m_at_socket370.c
|
|
m_at_misc.c
|
|
)
|
|
|
|
if(AN430TX)
|
|
target_compile_definitions(mch PRIVATE USE_AN430TX)
|
|
endif()
|
|
|
|
if(DESKPRO386)
|
|
target_compile_definitions(mch PRIVATE USE_DESKPRO386)
|
|
endif()
|
|
|
|
if(LASERXT)
|
|
target_sources(mch PRIVATE m_xt_laserxt.c)
|
|
target_compile_definitions(mch PRIVATE USE_LASERXT)
|
|
endif()
|
|
|
|
if(OLIVETTI)
|
|
target_compile_definitions(mch PRIVATE USE_OLIVETTI)
|
|
endif()
|
|
|
|
if(OPEN_AT)
|
|
target_compile_definitions(mch PRIVATE USE_OPEN_AT)
|
|
endif()
|