Fixed some minor T1200 and V86P HDC-related bugs.

This commit is contained in:
OBattler
2022-10-24 23:20:25 +02:00
parent 0ff86c50df
commit 0e3d4019c3
2 changed files with 3 additions and 2 deletions

View File

@@ -103,6 +103,7 @@
#include <86box/fdd.h>
#include <86box/fdc.h>
#include <86box/gameport.h>
#include <86box/hdc.h>
#include <86box/video.h>
#include <86box/plat.h>
#include <86box/machine.h>

View File

@@ -2102,14 +2102,14 @@ const machine_t machines[] = {
.max_multi = 0
},
.bus_flags = MACHINE_PC,
.flags = MACHINE_VIDEO,
.flags = MACHINE_VIDEO | MACHINE_MFM,
.ram = {
.min = 1024,
.max = 2048,
.step = 1024
},
.nvrmask = 63,
.kbc = KBC_IBM_PC_XT | MACHINE_MFM,
.kbc = KBC_IBM_PC_XT,
.kbc_p1 = 0xff00,
.gpio = 0xffffffff,
.device = &t1200_video_device,