Moved the Hedaka HED-919 to the Dev branch.

This commit is contained in:
OBattler
2020-07-12 19:21:44 +02:00
parent 1bb105b175
commit 01a43792e9
3 changed files with 9 additions and 1 deletions

View File

@@ -503,7 +503,9 @@ extern int machine_xt_jukopc_init(const machine_t *);
extern int machine_xt_open_xt_init(const machine_t *); extern int machine_xt_open_xt_init(const machine_t *);
extern int machine_xt_pxxt_init(const machine_t *); extern int machine_xt_pxxt_init(const machine_t *);
extern int machine_xt_hed919_init(const machine_t *); #if defined(DEV_BRANCH) && defined(USE_HEDAKA)
extern int machine_xt_hed919_init(const machine_t *);
#endif
/* m_xt_compaq.c */ /* m_xt_compaq.c */
extern int machine_xt_compaq_init(const machine_t *); extern int machine_xt_compaq_init(const machine_t *);

View File

@@ -254,6 +254,8 @@ machine_xt_open_xt_init(const machine_t *model)
return ret; return ret;
} }
#if defined(DEV_BRANCH) && defined(USE_HEDAKA)
int int
machine_xt_hed919_init(const machine_t *model) machine_xt_hed919_init(const machine_t *model)
{ {
@@ -272,6 +274,8 @@ machine_xt_hed919_init(const machine_t *model)
return ret; return ret;
} }
#endif
int int
machine_xt_pxxt_init(const machine_t *model) machine_xt_pxxt_init(const machine_t *model)

View File

@@ -123,7 +123,9 @@ const machine_t machines[] = {
#endif #endif
/* 286 XT machines */ /* 286 XT machines */
#if defined(DEV_BRANCH) && defined(USE_HEDAKA)
{ "[Citygate D30 XT] Hedaka HED-919", "hed919", MACHINE_TYPE_286, {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA, 64, 1024, 64, 0, machine_xt_hed919_init, NULL }, { "[Citygate D30 XT] Hedaka HED-919", "hed919", MACHINE_TYPE_286, {{"", cpus_286}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA, 64, 1024, 64, 0, machine_xt_hed919_init, NULL },
#endif
/* 286 AT machines */ /* 286 AT machines */
{ "[ISA] IBM AT", "ibmat", MACHINE_TYPE_286, {{"", cpus_ibmat}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 256,15872, 128, 63, machine_at_ibm_init, NULL }, { "[ISA] IBM AT", "ibmat", MACHINE_TYPE_286, {{"", cpus_ibmat}, {"", NULL}, {"", NULL}, {"", NULL}, {"", NULL}}, MACHINE_ISA | MACHINE_AT, 256,15872, 128, 63, machine_at_ibm_init, NULL },