2020-06-21 03:58:32 +02:00
|
|
|
/*
|
2022-11-05 21:44:11 -04: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-06-21 03:58:32 +02:00
|
|
|
*
|
2022-11-05 21:44:11 -04:00
|
|
|
* This file is part of the 86Box distribution.
|
2020-06-21 03:58:32 +02:00
|
|
|
*
|
2022-11-05 21:44:11 -04:00
|
|
|
* Handling of the emulated flash devices.
|
2020-06-21 03:58:32 +02:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2022-11-05 21:44:11 -04:00
|
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
2023-02-03 01:11:17 -05:00
|
|
|
* Jasmine Iwanek, <jriwanek@gmail.com>
|
2022-11-05 21:44:11 -04:00
|
|
|
*
|
2023-02-03 01:11:17 -05:00
|
|
|
* Copyright 2020 Miran Grca.
|
|
|
|
|
* Copyright 2022-2023 Jasmine Iwanek.
|
2020-06-21 03:58:32 +02:00
|
|
|
*/
|
|
|
|
|
|
2022-02-18 19:42:21 -05:00
|
|
|
#ifndef EMU_FLASH_H
|
2022-09-18 17:15:38 -04:00
|
|
|
#define EMU_FLASH_H
|
2022-02-18 19:42:21 -05:00
|
|
|
|
2020-06-21 03:58:32 +02:00
|
|
|
extern const device_t catalyst_flash_device;
|
|
|
|
|
|
|
|
|
|
extern const device_t intel_flash_bxt_ami_device;
|
|
|
|
|
extern const device_t intel_flash_bxt_device;
|
|
|
|
|
extern const device_t intel_flash_bxb_device;
|
|
|
|
|
|
|
|
|
|
extern const device_t sst_flash_29ee010_device;
|
|
|
|
|
extern const device_t sst_flash_29ee020_device;
|
2023-02-03 01:11:17 -05:00
|
|
|
|
|
|
|
|
extern const device_t winbond_flash_w29c512_device;
|
2022-12-04 23:31:21 +01:00
|
|
|
extern const device_t winbond_flash_w29c010_device;
|
2021-08-10 15:37:15 +02:00
|
|
|
extern const device_t winbond_flash_w29c020_device;
|
2023-02-03 01:11:17 -05:00
|
|
|
extern const device_t winbond_flash_w29c040_device;
|
|
|
|
|
|
|
|
|
|
extern const device_t sst_flash_39sf512_device;
|
2020-06-21 03:58:32 +02:00
|
|
|
extern const device_t sst_flash_39sf010_device;
|
|
|
|
|
extern const device_t sst_flash_39sf020_device;
|
2022-02-18 19:42:21 -05:00
|
|
|
extern const device_t sst_flash_39sf040_device;
|
|
|
|
|
|
2023-02-03 01:11:17 -05:00
|
|
|
extern const device_t sst_flash_39lf512_device;
|
|
|
|
|
extern const device_t sst_flash_39lf010_device;
|
|
|
|
|
extern const device_t sst_flash_39lf020_device;
|
|
|
|
|
extern const device_t sst_flash_39lf040_device;
|
|
|
|
|
extern const device_t sst_flash_39lf080_device;
|
|
|
|
|
extern const device_t sst_flash_39lf016_device;
|
|
|
|
|
|
|
|
|
|
extern const device_t sst_flash_49lf002_device;
|
|
|
|
|
extern const device_t sst_flash_49lf020_device;
|
|
|
|
|
extern const device_t sst_flash_49lf020a_device;
|
|
|
|
|
extern const device_t sst_flash_49lf003_device;
|
|
|
|
|
extern const device_t sst_flash_49lf030_device;
|
|
|
|
|
extern const device_t sst_flash_49lf004_device;
|
|
|
|
|
extern const device_t sst_flash_49lf004c_device;
|
|
|
|
|
extern const device_t sst_flash_49lf040_device;
|
|
|
|
|
extern const device_t sst_flash_49lf008_device;
|
|
|
|
|
extern const device_t sst_flash_49lf008c_device;
|
|
|
|
|
extern const device_t sst_flash_49lf080_device;
|
|
|
|
|
extern const device_t sst_flash_49lf016_device;
|
|
|
|
|
extern const device_t sst_flash_49lf160_device;
|
|
|
|
|
|
2022-02-18 19:42:21 -05:00
|
|
|
#endif /*EMU_FLASH_H*/
|