The IBM AT and the IBM XT 286 now have a FDC again.

This commit is contained in:
OBattler
2018-01-24 00:35:52 +01:00
parent 8e4f7d84cb
commit 25a0860011
3 changed files with 19 additions and 6 deletions

View File

@@ -8,6 +8,8 @@
#include "../dma.h"
#include "../mem.h"
#include "../device.h"
#include "../floppy/fdd.h"
#include "../floppy/fdc.h"
#include "../nvr.h"
#include "../game/gameport.h"
#include "../keyboard.h"
@@ -97,3 +99,12 @@ machine_at_ide_top_remap_init(machine_t *model)
mem_remap_top_384k();
}
void
machine_at_ibm_init(machine_t *model)
{
machine_at_top_remap_init(model);
device_add(&fdc_at_device);
}