The Olivetti M24 now has its hard disk controller (albeit not yet configurable), closes #845.

This commit is contained in:
OBattler
2022-11-06 02:41:46 +01:00
parent 989f1c3e0a
commit 95210fafbb
3 changed files with 6 additions and 2 deletions

View File

@@ -35,6 +35,7 @@ extern const device_t st506_xt_dtc5150x_device; /* st506_xt_dtc */
extern const device_t st506_xt_st11_m_device; /* st506_xt_st11_m */ extern const device_t st506_xt_st11_m_device; /* st506_xt_st11_m */
extern const device_t st506_xt_st11_r_device; /* st506_xt_st11_m */ extern const device_t st506_xt_st11_r_device; /* st506_xt_st11_m */
extern const device_t st506_xt_wd1002a_wx1_device; /* st506_xt_wd1002a_wx1 */ extern const device_t st506_xt_wd1002a_wx1_device; /* st506_xt_wd1002a_wx1 */
extern const device_t st506_xt_wd1002a_wx1_nobios_device; /* st506_xt_wd1002a_wx1 */
extern const device_t st506_xt_wd1002a_27x_device; /* st506_xt_wd1002a_27x */ extern const device_t st506_xt_wd1002a_27x_device; /* st506_xt_wd1002a_27x */
extern const device_t st506_at_wd1003_device; /* st506_at_wd1003 */ extern const device_t st506_at_wd1003_device; /* st506_at_wd1003 */
extern const device_t st506_xt_wd1004a_wx1_device; /* st506_xt_wd1004a_wx1 */ extern const device_t st506_xt_wd1004a_wx1_device; /* st506_xt_wd1004a_wx1 */

View File

@@ -46,6 +46,7 @@
#include <86box/fdc.h> #include <86box/fdc.h>
#include <86box/fdc_ext.h> #include <86box/fdc_ext.h>
#include <86box/gameport.h> #include <86box/gameport.h>
#include <86box/hdc.h>
#include <86box/port_6x.h> #include <86box/port_6x.h>
#include <86box/sound.h> #include <86box/sound.h>
#include <86box/snd_speaker.h> #include <86box/snd_speaker.h>
@@ -1136,6 +1137,8 @@ machine_xt_m24_init(const machine_t *model)
m24_kbd_init(m24_kbd); m24_kbd_init(m24_kbd);
device_add_ex(&m24_kbd_device, m24_kbd); device_add_ex(&m24_kbd_device, m24_kbd);
device_add(&st506_xt_wd1002a_wx1_nobios_device);
return ret; return ret;
} }

View File

@@ -2065,7 +2065,7 @@ const machine_t machines[] = {
.max_multi = 0 .max_multi = 0
}, },
.bus_flags = MACHINE_PC, .bus_flags = MACHINE_PC,
.flags = MACHINE_VIDEO | MACHINE_MOUSE, .flags = MACHINE_VIDEO | MACHINE_MOUSE | MACHINE_MFM,
.ram = { .ram = {
.min = 128, .min = 128,
.max = 640, .max = 640,
@@ -11365,7 +11365,7 @@ const machine_t machines[] = {
.flags = MACHINE_IDE_DUAL, .flags = MACHINE_IDE_DUAL,
.ram = { .ram = {
.min = 16384, .min = 16384,
.max = 2080768, .max = 2097152,
.step = 16384 .step = 16384
}, },
.nvrmask = 511, .nvrmask = 511,