Merge pull request #2989 from jriwanek-forks/monster-fdc-fixes

Correct mistakes in monster-fdc
This commit is contained in:
Jasmine Iwanek
2022-12-21 16:15:49 -05:00
committed by GitHub
3 changed files with 4 additions and 1 deletions

View File

@@ -135,6 +135,7 @@ static fdc_cards_t fdc_cards[] = {
{ &fdc_b215_device },
{ &fdc_pii151b_device },
{ &fdc_pii158b_device },
{ &fdc_monster_device },
{ NULL }
// clang-format on
};

View File

@@ -34,7 +34,7 @@
#include <86box/fdc_ext.h>
#define BIOS_ADDR (uint32_t)(device_get_config_hex20("bios_addr") & 0x000fffff)
#define ROM_MONSTER_FDC "roms/floppy/monster-fdc/floppy_bios.rom"
#define ROM_MONSTER_FDC "roms/floppy/monster-fdc/floppy_bios.bin"
typedef struct
{

View File

@@ -31,6 +31,8 @@ extern const device_t fdc_b215_device;
extern const device_t fdc_pii151b_device;
extern const device_t fdc_pii158b_device;
extern const device_t fdc_monster_device;
extern void fdc_card_init(void);
extern char *fdc_card_get_internal_name(int card);