2020-12-05 20:15:53 +01:00
|
|
|
/*
|
2022-11-13 16:37:58 -05:00
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
2020-12-05 20:15:53 +01:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* This file is part of the 86Box distribution.
|
2020-12-05 20:15:53 +01:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Emulation of the Olivetti XT-compatible machines.
|
2020-12-05 20:15:53 +01:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* - Supports MM58174 real-time clock emulation (M24)
|
|
|
|
|
* - Supports MM58274 real-time clock emulation (M240)
|
2020-12-05 20:15:53 +01:00
|
|
|
*
|
2023-01-06 15:36:29 -05:00
|
|
|
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
|
2022-11-13 16:37:58 -05:00
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
|
|
|
|
* EngiNerd <webmaster.crrc@yahoo.it>
|
2020-12-05 20:15:53 +01:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Copyright 2008-2019 Sarah Walker.
|
|
|
|
|
* Copyright 2016-2019 Miran Grca.
|
|
|
|
|
* Copyright 2017-2019 Fred N. van Kempen.
|
|
|
|
|
* Copyright 2020 EngiNerd.
|
2020-12-05 20:15:53 +01:00
|
|
|
*/
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
2022-10-26 23:51:22 +06:00
|
|
|
#include <time.h>
|
2020-12-05 20:15:53 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include <wchar.h>
|
2022-11-19 04:34:14 +01:00
|
|
|
#define HAVE_STDARG_H
|
2020-12-05 20:15:53 +01:00
|
|
|
#include <86box/86box.h>
|
|
|
|
|
#include <86box/timer.h>
|
|
|
|
|
#include <86box/io.h>
|
|
|
|
|
#include <86box/pic.h>
|
|
|
|
|
#include <86box/pit.h>
|
|
|
|
|
#include <86box/ppi.h>
|
|
|
|
|
#include <86box/nmi.h>
|
|
|
|
|
#include <86box/mem.h>
|
|
|
|
|
#include <86box/device.h>
|
|
|
|
|
#include <86box/nvr.h>
|
|
|
|
|
#include <86box/keyboard.h>
|
|
|
|
|
#include <86box/mouse.h>
|
|
|
|
|
#include <86box/rom.h>
|
|
|
|
|
#include <86box/fdd.h>
|
|
|
|
|
#include <86box/fdc.h>
|
|
|
|
|
#include <86box/fdc_ext.h>
|
|
|
|
|
#include <86box/gameport.h>
|
2022-11-06 02:41:46 +01:00
|
|
|
#include <86box/hdc.h>
|
2021-07-04 17:40:39 +02:00
|
|
|
#include <86box/port_6x.h>
|
2022-11-19 04:34:14 +01:00
|
|
|
#include <86box/serial.h>
|
2020-12-05 20:15:53 +01:00
|
|
|
#include <86box/sound.h>
|
|
|
|
|
#include <86box/snd_speaker.h>
|
|
|
|
|
#include <86box/video.h>
|
|
|
|
|
#include <86box/machine.h>
|
|
|
|
|
#include <86box/vid_cga.h>
|
|
|
|
|
#include <86box/vid_ogc.h>
|
|
|
|
|
#include <86box/vid_colorplus.h>
|
|
|
|
|
#include <86box/vid_cga_comp.h>
|
2023-06-09 23:46:54 -04:00
|
|
|
#include <86box/plat_unused.h>
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
#define STAT_PARITY 0x80
|
|
|
|
|
#define STAT_RTIMEOUT 0x40
|
|
|
|
|
#define STAT_TTIMEOUT 0x20
|
|
|
|
|
#define STAT_LOCK 0x10
|
|
|
|
|
#define STAT_CD 0x08
|
|
|
|
|
#define STAT_SYSFLAG 0x04
|
|
|
|
|
#define STAT_IFULL 0x02
|
|
|
|
|
#define STAT_OFULL 0x01
|
|
|
|
|
|
|
|
|
|
#define PLANTRONICS_MODE 1
|
2020-12-05 20:15:53 +01:00
|
|
|
#define OLIVETTI_OGC_MODE 0
|
|
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
#define CGA_RGB 0
|
|
|
|
|
#define CGA_COMPOSITE 1
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-10-23 15:39:42 +02:00
|
|
|
enum MM58174_ADDR {
|
2022-11-19 08:49:04 -05:00
|
|
|
/* Registers */
|
|
|
|
|
MM58174_TEST, /* TEST register, write only */
|
|
|
|
|
MM58174_TENTHS, /* Tenths of second, read only */
|
|
|
|
|
MM58174_SECOND1, /* Units of seconds, read only */
|
|
|
|
|
MM58174_SECOND10, /* Tens of seconds, read only */
|
|
|
|
|
MM58174_MINUTE1,
|
|
|
|
|
MM58174_MINUTE10,
|
|
|
|
|
MM58174_HOUR1,
|
|
|
|
|
MM58174_HOUR10,
|
|
|
|
|
MM58174_DAY1,
|
|
|
|
|
MM58174_DAY10,
|
|
|
|
|
MM58174_WEEKDAY,
|
|
|
|
|
MM58174_MONTH1,
|
|
|
|
|
MM58174_MONTH10,
|
|
|
|
|
MM58174_LEAPYEAR, /* Leap year status, write only */
|
|
|
|
|
MM58174_RESET, /* RESET register, write only */
|
|
|
|
|
MM58174_IRQ /* Interrupt register, read / write */
|
2022-10-23 15:39:42 +02:00
|
|
|
};
|
|
|
|
|
|
2022-10-30 16:34:42 +01:00
|
|
|
enum MM58274_ADDR {
|
2022-11-19 08:49:04 -05:00
|
|
|
/* Registers */
|
|
|
|
|
MM58274_CONTROL, /* Control register */
|
|
|
|
|
MM58274_TENTHS, /* Tenths of second, read only */
|
|
|
|
|
MM58274_SECOND1,
|
|
|
|
|
MM58274_SECOND10,
|
|
|
|
|
MM58274_MINUTE1,
|
|
|
|
|
MM58274_MINUTE10,
|
|
|
|
|
MM58274_HOUR1,
|
|
|
|
|
MM58274_HOUR10,
|
|
|
|
|
MM58274_DAY1,
|
|
|
|
|
MM58274_DAY10,
|
|
|
|
|
MM58274_MONTH1,
|
|
|
|
|
MM58274_MONTH10,
|
|
|
|
|
MM58274_YEAR1,
|
|
|
|
|
MM58274_YEAR10,
|
|
|
|
|
MM58274_WEEKDAY,
|
|
|
|
|
MM58274_SETTINGS /* Settings register */
|
2022-10-30 16:34:42 +01:00
|
|
|
};
|
|
|
|
|
|
2022-10-23 15:39:42 +02:00
|
|
|
static struct tm intclk;
|
|
|
|
|
|
2023-06-09 23:46:54 -04:00
|
|
|
typedef struct m24_kbd_t {
|
2020-12-05 20:15:53 +01:00
|
|
|
/* Keyboard stuff. */
|
2022-07-27 15:17:53 -04:00
|
|
|
int wantirq;
|
|
|
|
|
uint8_t command;
|
|
|
|
|
uint8_t status;
|
|
|
|
|
uint8_t out;
|
|
|
|
|
uint8_t output_port;
|
2022-11-19 04:34:14 +01:00
|
|
|
uint8_t id;
|
2023-06-09 23:46:54 -04:00
|
|
|
int param;
|
|
|
|
|
int param_total;
|
2022-07-27 15:17:53 -04:00
|
|
|
uint8_t params[16];
|
|
|
|
|
uint8_t scan[7];
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
/* Mouse stuff. */
|
2023-10-23 01:21:28 +02:00
|
|
|
int mouse_input_mode;
|
2023-06-09 23:46:54 -04:00
|
|
|
int b;
|
2023-08-11 22:29:53 +02:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
pc_timer_t send_delay_timer;
|
2021-04-17 17:12:02 -03:00
|
|
|
} m24_kbd_t;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2023-06-09 23:46:54 -04:00
|
|
|
typedef struct m19_vid_t {
|
2022-07-27 15:17:53 -04:00
|
|
|
ogc_t ogc;
|
|
|
|
|
colorplus_t colorplus;
|
|
|
|
|
int mode;
|
2021-04-17 17:12:02 -03:00
|
|
|
} m19_vid_t;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
static uint8_t key_queue[16];
|
2023-05-11 03:02:36 -04:00
|
|
|
static int key_queue_start = 0;
|
|
|
|
|
static int key_queue_end = 0;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
video_timings_t timing_m19_vid = { VIDEO_ISA, 8, 16, 32, 8, 16, 32 };
|
2021-07-15 03:15:09 +02:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
const device_t m19_vid_device;
|
2021-07-15 03:15:09 +02:00
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
#ifdef ENABLE_XT_OLIVETTI_LOG
|
|
|
|
|
int xt_olivetti_do_log = ENABLE_XT_OLIVETTI_LOG;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
static void
|
2022-11-19 04:34:14 +01:00
|
|
|
xt_olivetti_log(const char *fmt, ...)
|
2020-12-05 20:15:53 +01:00
|
|
|
{
|
|
|
|
|
va_list ap;
|
|
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
if (xt_olivetti_do_log) {
|
2022-07-27 15:17:53 -04:00
|
|
|
va_start(ap, fmt);
|
2022-11-19 04:34:14 +01:00
|
|
|
pclog_ex(fmt, ap);
|
2022-07-27 15:17:53 -04:00
|
|
|
va_end(ap);
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#else
|
2022-11-19 04:34:14 +01:00
|
|
|
# define xt_olivetti_log(fmt, ...)
|
2020-12-05 20:15:53 +01:00
|
|
|
#endif
|
|
|
|
|
|
2022-10-23 15:39:42 +02:00
|
|
|
/* Set the chip time. */
|
|
|
|
|
static void
|
|
|
|
|
mm58174_time_set(uint8_t *regs, struct tm *tm)
|
|
|
|
|
{
|
|
|
|
|
regs[MM58174_SECOND1] = (tm->tm_sec % 10);
|
|
|
|
|
regs[MM58174_SECOND10] = (tm->tm_sec / 10);
|
|
|
|
|
regs[MM58174_MINUTE1] = (tm->tm_min % 10);
|
|
|
|
|
regs[MM58174_MINUTE10] = (tm->tm_min / 10);
|
2022-10-30 15:36:06 +01:00
|
|
|
regs[MM58174_HOUR1] = (tm->tm_hour % 10);
|
|
|
|
|
regs[MM58174_HOUR10] = (tm->tm_hour / 10);
|
|
|
|
|
regs[MM58174_WEEKDAY] = (tm->tm_wday + 1);
|
|
|
|
|
regs[MM58174_DAY1] = (tm->tm_mday % 10);
|
|
|
|
|
regs[MM58174_DAY10] = (tm->tm_mday / 10);
|
|
|
|
|
regs[MM58174_MONTH1] = ((tm->tm_mon + 1) % 10);
|
|
|
|
|
regs[MM58174_MONTH10] = ((tm->tm_mon + 1) / 10);
|
|
|
|
|
/* MM58174 does not store the year, M24 uses the IRQ register to count 8 years from leap year */
|
|
|
|
|
regs[MM58174_IRQ] = ((tm->tm_year + 1900) % 8);
|
2022-10-23 15:39:42 +02:00
|
|
|
regs[MM58174_LEAPYEAR] = 8 >> ((regs[MM58174_IRQ] & 0x07) & 0x03);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get the chip time. */
|
|
|
|
|
#define nibbles(a) (regs[(a##1)] + 10 * regs[(a##10)])
|
|
|
|
|
static void
|
|
|
|
|
mm58174_time_get(uint8_t *regs, struct tm *tm)
|
|
|
|
|
{
|
2022-10-30 15:36:06 +01:00
|
|
|
tm->tm_sec = nibbles(MM58174_SECOND);
|
|
|
|
|
tm->tm_min = nibbles(MM58174_MINUTE);
|
2022-10-23 15:39:42 +02:00
|
|
|
tm->tm_hour = nibbles(MM58174_HOUR);
|
|
|
|
|
tm->tm_wday = (regs[MM58174_WEEKDAY] - 1);
|
|
|
|
|
tm->tm_mday = nibbles(MM58174_DAY);
|
|
|
|
|
tm->tm_mon = (nibbles(MM58174_MONTH) - 1);
|
2022-10-30 15:36:06 +01:00
|
|
|
/* MM58174 does not store the year */
|
2022-10-23 15:39:42 +02:00
|
|
|
tm->tm_year = (1984 + (regs[MM58174_IRQ] & 0x07) - 1900);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* One more second has passed, update the internal clock. */
|
|
|
|
|
static void
|
2022-11-17 22:44:06 +01:00
|
|
|
mm58x74_recalc(void)
|
2022-10-23 15:39:42 +02:00
|
|
|
{
|
|
|
|
|
/* Ping the internal clock. */
|
|
|
|
|
if (++intclk.tm_sec == 60) {
|
|
|
|
|
intclk.tm_sec = 0;
|
|
|
|
|
if (++intclk.tm_min == 60) {
|
|
|
|
|
intclk.tm_min = 0;
|
|
|
|
|
if (++intclk.tm_hour == 24) {
|
|
|
|
|
intclk.tm_hour = 0;
|
|
|
|
|
if (++intclk.tm_mday == (nvr_get_days(intclk.tm_mon, intclk.tm_year) + 1)) {
|
|
|
|
|
intclk.tm_mday = 1;
|
|
|
|
|
if (++intclk.tm_mon == 13) {
|
|
|
|
|
intclk.tm_mon = 1;
|
|
|
|
|
intclk.tm_year++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is called every second through the NVR/RTC hook. */
|
|
|
|
|
static void
|
|
|
|
|
mm58174_tick(nvr_t *nvr)
|
|
|
|
|
{
|
2022-10-30 16:34:42 +01:00
|
|
|
mm58x74_recalc();
|
2022-10-23 15:39:42 +02:00
|
|
|
mm58174_time_set(nvr->regs, &intclk);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
mm58174_start(nvr_t *nvr)
|
|
|
|
|
{
|
|
|
|
|
struct tm tm;
|
|
|
|
|
|
|
|
|
|
/* Initialize the internal and chip times. */
|
|
|
|
|
if (time_sync & TIME_SYNC_ENABLED) {
|
|
|
|
|
/* Use the internal clock's time. */
|
|
|
|
|
nvr_time_get(&tm);
|
|
|
|
|
mm58174_time_set(nvr->regs, &tm);
|
|
|
|
|
} else {
|
|
|
|
|
/* Set the internal clock from the chip time. */
|
|
|
|
|
mm58174_time_get(nvr->regs, &tm);
|
|
|
|
|
nvr_time_set(&tm);
|
|
|
|
|
}
|
|
|
|
|
mm58174_time_get(nvr->regs, &intclk);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write to one of the chip registers. */
|
|
|
|
|
static void
|
|
|
|
|
mm58174_write(uint16_t addr, uint8_t val, void *priv)
|
|
|
|
|
{
|
2022-11-19 08:49:04 -05:00
|
|
|
nvr_t *nvr = (nvr_t *) priv;
|
2022-10-23 15:39:42 +02:00
|
|
|
|
|
|
|
|
addr &= 0x0f;
|
|
|
|
|
val &= 0x0f;
|
|
|
|
|
|
|
|
|
|
/* Update non-read-only changed values if not synchronizing time to host */
|
2022-11-19 08:49:04 -05:00
|
|
|
if ((addr != MM58174_TENTHS) && (addr != MM58174_SECOND1) && (addr != MM58174_SECOND10))
|
|
|
|
|
if ((nvr->regs[addr] != val) && !(time_sync & TIME_SYNC_ENABLED))
|
2022-10-23 15:39:42 +02:00
|
|
|
nvr_dosave = 1;
|
|
|
|
|
|
|
|
|
|
if ((addr == MM58174_RESET) && (val & 0x01)) {
|
|
|
|
|
/* When timer starts, MM58174 sets seconds and tenths of second to 0 */
|
|
|
|
|
nvr->regs[MM58174_TENTHS] = 0;
|
|
|
|
|
if (!(time_sync & TIME_SYNC_ENABLED)) {
|
|
|
|
|
/* Only set seconds to 0 if not synchronizing time to host clock */
|
2022-11-19 08:49:04 -05:00
|
|
|
nvr->regs[MM58174_SECOND1] = 0;
|
2022-10-23 15:39:42 +02:00
|
|
|
nvr->regs[MM58174_SECOND10] = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Store the new value */
|
|
|
|
|
nvr->regs[addr] = val;
|
|
|
|
|
|
|
|
|
|
/* Update internal clock with MM58174 time */
|
|
|
|
|
mm58174_time_get(nvr->regs, &intclk);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read from one of the chip registers. */
|
|
|
|
|
static uint8_t
|
|
|
|
|
mm58174_read(uint16_t addr, void *priv)
|
|
|
|
|
{
|
2022-11-19 08:49:04 -05:00
|
|
|
nvr_t *nvr = (nvr_t *) priv;
|
2022-10-23 15:39:42 +02:00
|
|
|
|
|
|
|
|
addr &= 0x0f;
|
|
|
|
|
|
|
|
|
|
/* Set IRQ control bit to 0 upon read */
|
|
|
|
|
if (addr == 0x0f)
|
|
|
|
|
nvr->regs[addr] &= 0x07;
|
|
|
|
|
|
|
|
|
|
/* Grab and return the desired value */
|
|
|
|
|
return (nvr->regs[addr]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Reset the MM58174 to a default state. */
|
|
|
|
|
static void
|
|
|
|
|
mm58174_reset(nvr_t *nvr)
|
|
|
|
|
{
|
|
|
|
|
/* Clear the NVRAM. */
|
|
|
|
|
memset(nvr->regs, 0xff, nvr->size);
|
|
|
|
|
|
|
|
|
|
/* Reset the RTC registers. */
|
|
|
|
|
memset(nvr->regs, 0x00, 16);
|
|
|
|
|
nvr->regs[MM58174_WEEKDAY] = 0x01;
|
|
|
|
|
nvr->regs[MM58174_DAY1] = 0x01;
|
|
|
|
|
nvr->regs[MM58174_MONTH1] = 0x01;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
mm58174_init(nvr_t *nvr, int size)
|
|
|
|
|
{
|
|
|
|
|
/* This is machine specific. */
|
|
|
|
|
nvr->size = size;
|
|
|
|
|
nvr->irq = -1;
|
|
|
|
|
|
|
|
|
|
/* Set up any local handlers here. */
|
|
|
|
|
nvr->reset = mm58174_reset;
|
|
|
|
|
nvr->start = mm58174_start;
|
|
|
|
|
nvr->tick = mm58174_tick;
|
|
|
|
|
|
|
|
|
|
/* Initialize the actual NVR. */
|
|
|
|
|
nvr_init(nvr);
|
|
|
|
|
|
|
|
|
|
io_sethandler(0x0070, 16,
|
|
|
|
|
mm58174_read, NULL, NULL, mm58174_write, NULL, NULL, nvr);
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-30 16:34:42 +01:00
|
|
|
/* Set the chip time. */
|
|
|
|
|
static void
|
|
|
|
|
mm58274_time_set(uint8_t *regs, struct tm *tm)
|
|
|
|
|
{
|
2022-11-19 08:49:04 -05:00
|
|
|
regs[MM58274_SECOND1] = (tm->tm_sec % 10);
|
|
|
|
|
regs[MM58274_SECOND10] = (tm->tm_sec / 10);
|
|
|
|
|
regs[MM58274_MINUTE1] = (tm->tm_min % 10);
|
|
|
|
|
regs[MM58274_MINUTE10] = (tm->tm_min / 10);
|
|
|
|
|
regs[MM58274_HOUR1] = (tm->tm_hour % 10);
|
|
|
|
|
regs[MM58274_HOUR10] = (tm->tm_hour / 10);
|
2022-10-30 16:34:42 +01:00
|
|
|
/* Store hour in 24-hour or 12-hour mode */
|
|
|
|
|
if (regs[MM58274_SETTINGS] & 0x01) {
|
|
|
|
|
regs[MM58274_HOUR1] = (tm->tm_hour % 10);
|
|
|
|
|
regs[MM58274_HOUR10] = (tm->tm_hour / 10);
|
|
|
|
|
} else {
|
|
|
|
|
regs[MM58274_HOUR1] = ((tm->tm_hour % 12) % 10);
|
2023-05-11 03:02:36 -04:00
|
|
|
regs[MM58274_HOUR10] = ((tm->tm_hour % 12) / 10);
|
2022-10-30 16:34:42 +01:00
|
|
|
if (tm->tm_hour >= 12)
|
|
|
|
|
regs[MM58274_SETTINGS] |= 0x04;
|
|
|
|
|
else
|
|
|
|
|
regs[MM58274_SETTINGS] &= 0x0B;
|
|
|
|
|
}
|
2022-11-19 08:49:04 -05:00
|
|
|
regs[MM58274_WEEKDAY] = (tm->tm_wday + 1);
|
|
|
|
|
regs[MM58274_DAY1] = (tm->tm_mday % 10);
|
|
|
|
|
regs[MM58274_DAY10] = (tm->tm_mday / 10);
|
|
|
|
|
regs[MM58274_MONTH1] = ((tm->tm_mon + 1) % 10);
|
|
|
|
|
regs[MM58274_MONTH10] = ((tm->tm_mon + 1) / 10);
|
2022-10-30 16:34:42 +01:00
|
|
|
/* MM58274 can store 00 to 99 years but M240 uses the YEAR1 register to count 8 years from leap year */
|
2022-11-19 08:49:04 -05:00
|
|
|
regs[MM58274_YEAR1] = ((tm->tm_year + 1900) % 8);
|
2022-10-30 16:34:42 +01:00
|
|
|
/* Keep bit 0 and 1 12-hour / 24-hour and AM / PM */
|
2022-11-19 08:49:04 -05:00
|
|
|
regs[MM58274_SETTINGS] &= 0x03;
|
2022-10-30 16:34:42 +01:00
|
|
|
/* Set leap counter bits 2 and 3 */
|
2022-11-19 08:49:04 -05:00
|
|
|
regs[MM58274_SETTINGS] += (4 * (regs[MM58274_YEAR1] & 0x03));
|
2022-10-30 16:34:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get the chip time. */
|
|
|
|
|
static void
|
|
|
|
|
mm58274_time_get(uint8_t *regs, struct tm *tm)
|
|
|
|
|
{
|
2022-11-19 08:49:04 -05:00
|
|
|
tm->tm_sec = nibbles(MM58274_SECOND);
|
|
|
|
|
tm->tm_min = nibbles(MM58274_MINUTE);
|
2022-10-30 16:34:42 +01:00
|
|
|
/* Read hour in 24-hour or 12-hour mode */
|
|
|
|
|
if (regs[MM58274_SETTINGS] & 0x01)
|
|
|
|
|
tm->tm_hour = nibbles(MM58274_HOUR);
|
|
|
|
|
else
|
|
|
|
|
tm->tm_hour = ((nibbles(MM58274_HOUR) % 12) + (regs[MM58274_SETTINGS] & 0x04) ? 12 : 0);
|
2022-11-19 08:49:04 -05:00
|
|
|
tm->tm_wday = (regs[MM58274_WEEKDAY] - 1);
|
|
|
|
|
tm->tm_mday = nibbles(MM58274_DAY);
|
|
|
|
|
tm->tm_mon = (nibbles(MM58274_MONTH) - 1);
|
2022-10-30 16:34:42 +01:00
|
|
|
/* MM58274 can store 00 to 99 years but M240 uses the YEAR1 register to count 8 years from leap year */
|
2022-11-19 08:49:04 -05:00
|
|
|
tm->tm_year = (1984 + regs[MM58274_YEAR1] - 1900);
|
2022-10-30 16:34:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This is called every second through the NVR/RTC hook. */
|
|
|
|
|
static void
|
|
|
|
|
mm58274_tick(nvr_t *nvr)
|
|
|
|
|
{
|
|
|
|
|
mm58x74_recalc();
|
|
|
|
|
mm58274_time_set(nvr->regs, &intclk);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
mm58274_start(nvr_t *nvr)
|
|
|
|
|
{
|
|
|
|
|
struct tm tm;
|
|
|
|
|
|
|
|
|
|
/* Initialize the internal and chip times. */
|
|
|
|
|
if (time_sync & TIME_SYNC_ENABLED) {
|
|
|
|
|
/* Use the internal clock's time. */
|
|
|
|
|
nvr_time_get(&tm);
|
|
|
|
|
mm58274_time_set(nvr->regs, &tm);
|
|
|
|
|
} else {
|
|
|
|
|
/* Set the internal clock from the chip time. */
|
|
|
|
|
mm58274_time_get(nvr->regs, &tm);
|
|
|
|
|
nvr_time_set(&tm);
|
|
|
|
|
}
|
|
|
|
|
mm58274_time_get(nvr->regs, &intclk);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write to one of the chip registers. */
|
|
|
|
|
static void
|
|
|
|
|
mm58274_write(uint16_t addr, uint8_t val, void *priv)
|
|
|
|
|
{
|
2022-11-19 08:49:04 -05:00
|
|
|
nvr_t *nvr = (nvr_t *) priv;
|
2022-10-30 16:34:42 +01:00
|
|
|
|
|
|
|
|
addr &= 0x0f;
|
|
|
|
|
val &= 0x0f;
|
|
|
|
|
|
|
|
|
|
/* Update non-read-only changed values if not synchronizing time to host */
|
2023-05-11 03:02:36 -04:00
|
|
|
if (addr != MM58274_TENTHS)
|
2022-11-19 08:49:04 -05:00
|
|
|
if ((nvr->regs[addr] != val) && !(time_sync & TIME_SYNC_ENABLED))
|
2022-10-30 16:34:42 +01:00
|
|
|
nvr_dosave = 1;
|
|
|
|
|
|
|
|
|
|
if ((addr == MM58274_CONTROL) && (val & 0x04)) {
|
|
|
|
|
/* When timer starts, MM58274 sets tenths of second to 0 */
|
|
|
|
|
nvr->regs[MM58274_TENTHS] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Store the new value */
|
|
|
|
|
nvr->regs[addr] = val;
|
|
|
|
|
|
|
|
|
|
/* Update internal clock with MM58274 time */
|
|
|
|
|
mm58274_time_get(nvr->regs, &intclk);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read from one of the chip registers. */
|
|
|
|
|
static uint8_t
|
|
|
|
|
mm58274_read(uint16_t addr, void *priv)
|
|
|
|
|
{
|
2023-07-20 18:58:26 -04:00
|
|
|
const nvr_t *nvr = (nvr_t *) priv;
|
2022-10-30 16:34:42 +01:00
|
|
|
|
|
|
|
|
addr &= 0x0f;
|
|
|
|
|
|
|
|
|
|
/* Grab and return the desired value */
|
|
|
|
|
return (nvr->regs[addr]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Reset the MM58274 to a default state. */
|
|
|
|
|
static void
|
|
|
|
|
mm58274_reset(nvr_t *nvr)
|
|
|
|
|
{
|
|
|
|
|
/* Clear the NVRAM. */
|
|
|
|
|
memset(nvr->regs, 0xff, nvr->size);
|
|
|
|
|
|
|
|
|
|
/* Reset the RTC registers. */
|
|
|
|
|
memset(nvr->regs, 0x00, 16);
|
|
|
|
|
nvr->regs[MM58274_WEEKDAY] = 0x01;
|
|
|
|
|
nvr->regs[MM58274_DAY1] = 0x01;
|
|
|
|
|
nvr->regs[MM58274_MONTH1] = 0x01;
|
|
|
|
|
nvr->regs[MM58274_SETTINGS] = 0x01;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
mm58274_init(nvr_t *nvr, int size)
|
|
|
|
|
{
|
|
|
|
|
/* This is machine specific. */
|
|
|
|
|
nvr->size = size;
|
|
|
|
|
nvr->irq = -1;
|
|
|
|
|
|
|
|
|
|
/* Set up any local handlers here. */
|
|
|
|
|
nvr->reset = mm58274_reset;
|
|
|
|
|
nvr->start = mm58274_start;
|
|
|
|
|
nvr->tick = mm58274_tick;
|
|
|
|
|
|
|
|
|
|
/* Initialize the actual NVR. */
|
|
|
|
|
nvr_init(nvr);
|
|
|
|
|
|
|
|
|
|
io_sethandler(0x0070, 16,
|
|
|
|
|
mm58274_read, NULL, NULL, mm58274_write, NULL, NULL, nvr);
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-05 20:15:53 +01:00
|
|
|
static void
|
|
|
|
|
m24_kbd_poll(void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_t *m24_kbd = (m24_kbd_t *) priv;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
timer_advance_u64(&m24_kbd->send_delay_timer, 1000 * TIMER_USEC);
|
|
|
|
|
if (m24_kbd->wantirq) {
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd->wantirq = 0;
|
|
|
|
|
picint(2);
|
2022-11-19 04:34:14 +01:00
|
|
|
xt_olivetti_log("M24: take IRQ\n");
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!(m24_kbd->status & STAT_OFULL) && key_queue_start != key_queue_end) {
|
2022-11-19 04:34:14 +01:00
|
|
|
xt_olivetti_log("Reading %02X from the key queue at %i\n",
|
|
|
|
|
m24_kbd->out, key_queue_start);
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd->out = key_queue[key_queue_start];
|
|
|
|
|
key_queue_start = (key_queue_start + 1) & 0xf;
|
|
|
|
|
m24_kbd->status |= STAT_OFULL;
|
|
|
|
|
m24_kbd->status &= ~STAT_IFULL;
|
|
|
|
|
m24_kbd->wantirq = 1;
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
m24_kbd_adddata(uint16_t val)
|
|
|
|
|
{
|
|
|
|
|
key_queue[key_queue_end] = val;
|
2022-07-27 15:17:53 -04:00
|
|
|
key_queue_end = (key_queue_end + 1) & 0xf;
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
m24_kbd_adddata_ex(uint16_t val)
|
|
|
|
|
{
|
|
|
|
|
kbd_adddata_process(val, m24_kbd_adddata);
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-19 08:49:04 -05:00
|
|
|
/*
|
2022-11-19 04:34:14 +01:00
|
|
|
From the Olivetti M21/M24 Theory of Operation:
|
|
|
|
|
|
|
|
|
|
Port Function
|
|
|
|
|
---- --------
|
|
|
|
|
60h Keyboard 8041 Data Transfer Read/Write
|
|
|
|
|
61h Control Port A Read/Write
|
|
|
|
|
62h Control Port B Read
|
|
|
|
|
63h Not Used
|
|
|
|
|
64h Keyboard 8041 Command/Status
|
|
|
|
|
65h Communications Port Read
|
|
|
|
|
66h System Configuration Read
|
|
|
|
|
67h System Configuration Read
|
|
|
|
|
*/
|
2020-12-05 20:15:53 +01:00
|
|
|
static void
|
|
|
|
|
m24_kbd_write(uint16_t port, uint8_t val, void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_t *m24_kbd = (m24_kbd_t *) priv;
|
2022-11-19 08:49:04 -05:00
|
|
|
uint8_t ret;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
xt_olivetti_log("M24: write %04X %02X\n", port, val);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
switch (port) {
|
2022-07-27 15:17:53 -04:00
|
|
|
case 0x60:
|
2022-11-19 04:34:14 +01:00
|
|
|
m24_kbd->status &= ~STAT_CD;
|
|
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
if (m24_kbd->param != m24_kbd->param_total) {
|
|
|
|
|
m24_kbd->params[m24_kbd->param++] = val;
|
|
|
|
|
if (m24_kbd->param == m24_kbd->param_total) {
|
|
|
|
|
switch (m24_kbd->command) {
|
|
|
|
|
case 0x11:
|
2023-10-23 01:21:28 +02:00
|
|
|
m24_kbd->mouse_input_mode = 0;
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd->scan[0] = m24_kbd->params[0];
|
|
|
|
|
m24_kbd->scan[1] = m24_kbd->params[1];
|
|
|
|
|
m24_kbd->scan[2] = m24_kbd->params[2];
|
|
|
|
|
m24_kbd->scan[3] = m24_kbd->params[3];
|
|
|
|
|
m24_kbd->scan[4] = m24_kbd->params[4];
|
|
|
|
|
m24_kbd->scan[5] = m24_kbd->params[5];
|
|
|
|
|
m24_kbd->scan[6] = m24_kbd->params[6];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x12:
|
2023-10-23 01:21:28 +02:00
|
|
|
m24_kbd->mouse_input_mode = 1;
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd->scan[0] = m24_kbd->params[0];
|
|
|
|
|
m24_kbd->scan[1] = m24_kbd->params[1];
|
|
|
|
|
m24_kbd->scan[2] = m24_kbd->params[2];
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2022-11-19 04:34:14 +01:00
|
|
|
xt_olivetti_log("M24: bad keyboard command complete %02X\n", m24_kbd->command);
|
2022-07-27 15:17:53 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
m24_kbd->command = val;
|
|
|
|
|
switch (val) {
|
2022-11-19 04:34:14 +01:00
|
|
|
/* 01: FD, 05: ANY ---> Customer test reports no keyboard.
|
|
|
|
|
01: AA, 05: 01 ---> Customer test reports 102 Deluxe keyboard.
|
|
|
|
|
01: AA, 05: 02 ---> Customer test reports 83-key keyboard.
|
|
|
|
|
01: AA, 05: 10 ---> Customer test reports M240 keyboard.
|
|
|
|
|
01: AA, 05: 20 ---> Customer test reports 101/102/key keyboard.
|
|
|
|
|
01: AA, 05: 40 or anything else ---> Customer test reports 101/102/key keyboard.
|
|
|
|
|
|
|
|
|
|
AA is the correct return for command 01, as confirmed by the M24 Customer Test. */
|
2022-07-27 15:17:53 -04:00
|
|
|
case 0x01: /*Self-test*/
|
2022-11-19 04:34:14 +01:00
|
|
|
m24_kbd_adddata(0xaa);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x02: /*Olivetti M240: Read SWB*/
|
|
|
|
|
/* SWB on mainboard (off=1)
|
|
|
|
|
* bit 7 - use BIOS HD on mainboard (on) / on controller (off)
|
|
|
|
|
* bit 6 - use OCG/CGA display adapter (on) / other display adapter (off)
|
|
|
|
|
*/
|
|
|
|
|
ret = (hdc_current == HDC_INTERNAL) ? 0x00 : 0x80;
|
|
|
|
|
ret |= video_is_cga() ? 0x40 : 0x00;
|
|
|
|
|
|
|
|
|
|
m24_kbd_adddata(ret);
|
2022-07-27 15:17:53 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x05: /*Read ID*/
|
2022-11-19 04:34:14 +01:00
|
|
|
ret = m24_kbd->id;
|
|
|
|
|
m24_kbd_adddata(ret);
|
2022-07-27 15:17:53 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x11:
|
|
|
|
|
m24_kbd->param = 0;
|
|
|
|
|
m24_kbd->param_total = 9;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x12:
|
|
|
|
|
m24_kbd->param = 0;
|
|
|
|
|
m24_kbd->param_total = 4;
|
|
|
|
|
break;
|
|
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
case 0x13: /*Sent by Olivetti M240 Customer Diagnostics*/
|
|
|
|
|
break;
|
|
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
default:
|
2022-11-19 04:34:14 +01:00
|
|
|
xt_olivetti_log("M24: bad keyboard command %02X\n", val);
|
2022-07-27 15:17:53 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x61:
|
|
|
|
|
ppi.pb = val;
|
|
|
|
|
|
|
|
|
|
speaker_update();
|
|
|
|
|
speaker_gated = val & 1;
|
|
|
|
|
speaker_enable = val & 2;
|
|
|
|
|
if (speaker_enable)
|
|
|
|
|
was_speaker_enable = 1;
|
|
|
|
|
pit_devs[0].set_gate(pit_devs[0].data, 2, val & 1);
|
|
|
|
|
break;
|
2022-11-19 04:34:14 +01:00
|
|
|
|
|
|
|
|
case 0x64:
|
|
|
|
|
m24_kbd->status |= STAT_CD;
|
|
|
|
|
|
|
|
|
|
if (val == 0x02)
|
|
|
|
|
m24_kbd_adddata(0x00);
|
2023-06-09 23:46:54 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
extern uint8_t random_generate(void);
|
|
|
|
|
|
2020-12-05 20:15:53 +01:00
|
|
|
static uint8_t
|
|
|
|
|
m24_kbd_read(uint16_t port, void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_t *m24_kbd = (m24_kbd_t *) priv;
|
|
|
|
|
uint8_t ret = 0xff;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
switch (port) {
|
2022-07-27 15:17:53 -04:00
|
|
|
case 0x60:
|
|
|
|
|
ret = m24_kbd->out;
|
|
|
|
|
if (key_queue_start == key_queue_end) {
|
|
|
|
|
m24_kbd->status &= ~STAT_OFULL;
|
|
|
|
|
m24_kbd->wantirq = 0;
|
|
|
|
|
} else {
|
|
|
|
|
m24_kbd->out = key_queue[key_queue_start];
|
|
|
|
|
key_queue_start = (key_queue_start + 1) & 0xf;
|
|
|
|
|
m24_kbd->status |= STAT_OFULL;
|
|
|
|
|
m24_kbd->status &= ~STAT_IFULL;
|
|
|
|
|
m24_kbd->wantirq = 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x61:
|
2022-11-19 04:34:14 +01:00
|
|
|
/* MS-DOS 5.00 and higher's KEYB.COM freezes due to port 61h not having the
|
|
|
|
|
AT refresh toggle, because for some reson it thinks the M24 is an AT.
|
|
|
|
|
|
|
|
|
|
A German-language site confirms this also happens on real hardware.
|
|
|
|
|
|
|
|
|
|
The M240 is not affected. */
|
2022-07-27 15:17:53 -04:00
|
|
|
ret = ppi.pb;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x64:
|
2022-11-19 04:34:14 +01:00
|
|
|
ret = m24_kbd->status & 0x0f;
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd->status &= ~(STAT_RTIMEOUT | STAT_TTIMEOUT);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2022-11-19 04:34:14 +01:00
|
|
|
xt_olivetti_log("\nBad M24 keyboard read %04X\n", port);
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
2023-05-11 03:02:36 -04:00
|
|
|
return ret;
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
m24_kbd_close(void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_t *kbd = (m24_kbd_t *) priv;
|
2020-12-19 00:06:41 +01:00
|
|
|
|
|
|
|
|
/* Stop the timer. */
|
2020-12-05 20:15:53 +01:00
|
|
|
timer_disable(&kbd->send_delay_timer);
|
2022-02-20 02:26:27 -05:00
|
|
|
|
2020-12-05 20:15:53 +01:00
|
|
|
/* Disable scanning. */
|
|
|
|
|
keyboard_scan = 0;
|
|
|
|
|
|
|
|
|
|
keyboard_send = NULL;
|
|
|
|
|
|
|
|
|
|
io_removehandler(0x0060, 2,
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_read, NULL, NULL, m24_kbd_write, NULL, NULL, kbd);
|
2020-12-19 00:06:41 +01:00
|
|
|
io_removehandler(0x0064, 1,
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_read, NULL, NULL, m24_kbd_write, NULL, NULL, kbd);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
free(kbd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
m24_kbd_reset(void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_t *m24_kbd = (m24_kbd_t *) priv;
|
2022-02-20 02:26:27 -05:00
|
|
|
|
2020-12-05 20:15:53 +01:00
|
|
|
/* Initialize the keyboard. */
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd->status = STAT_LOCK | STAT_CD;
|
2020-12-05 20:15:53 +01:00
|
|
|
m24_kbd->wantirq = 0;
|
2022-07-27 15:17:53 -04:00
|
|
|
keyboard_scan = 1;
|
2020-12-05 20:15:53 +01:00
|
|
|
m24_kbd->param = m24_kbd->param_total = 0;
|
2023-10-23 01:21:28 +02:00
|
|
|
m24_kbd->mouse_input_mode = 0;
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd->scan[0] = 0x1c;
|
|
|
|
|
m24_kbd->scan[1] = 0x53;
|
|
|
|
|
m24_kbd->scan[2] = 0x01;
|
|
|
|
|
m24_kbd->scan[3] = 0x4b;
|
|
|
|
|
m24_kbd->scan[4] = 0x4d;
|
|
|
|
|
m24_kbd->scan[5] = 0x48;
|
|
|
|
|
m24_kbd->scan[6] = 0x50;
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2023-08-11 22:29:53 +02:00
|
|
|
ms_poll(void *priv)
|
2020-12-05 20:15:53 +01:00
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_t *m24_kbd = (m24_kbd_t *) priv;
|
2023-08-11 22:29:53 +02:00
|
|
|
int delta_x;
|
|
|
|
|
int delta_y;
|
|
|
|
|
int o_x;
|
|
|
|
|
int o_y;
|
|
|
|
|
int b = mouse_get_buttons_ex();
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
if (((key_queue_end - key_queue_start) & 0xf) > 14)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0xff;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
if ((b & 1) && !(m24_kbd->b & 1))
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[0]);
|
2020-12-05 20:15:53 +01:00
|
|
|
if (!(b & 1) && (m24_kbd->b & 1))
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[0] | 0x80);
|
2020-12-05 20:15:53 +01:00
|
|
|
m24_kbd->b = (m24_kbd->b & ~1) | (b & 1);
|
|
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
if (((key_queue_end - key_queue_start) & 0xf) > 14)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0xff;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
if ((b & 2) && !(m24_kbd->b & 2))
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[2]);
|
2020-12-05 20:15:53 +01:00
|
|
|
if (!(b & 2) && (m24_kbd->b & 2))
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[2] | 0x80);
|
2020-12-05 20:15:53 +01:00
|
|
|
m24_kbd->b = (m24_kbd->b & ~2) | (b & 2);
|
|
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
if (((key_queue_end - key_queue_start) & 0xf) > 14)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0xff;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
if ((b & 4) && !(m24_kbd->b & 4))
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[1]);
|
2020-12-05 20:15:53 +01:00
|
|
|
if (!(b & 4) && (m24_kbd->b & 4))
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[1] | 0x80);
|
2020-12-05 20:15:53 +01:00
|
|
|
m24_kbd->b = (m24_kbd->b & ~4) | (b & 4);
|
|
|
|
|
|
2023-10-23 01:21:28 +02:00
|
|
|
if (m24_kbd->mouse_input_mode) {
|
2022-07-27 15:17:53 -04:00
|
|
|
if (((key_queue_end - key_queue_start) & 0xf) > 12)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0xff;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2023-08-11 22:29:53 +02:00
|
|
|
if (!mouse_moved())
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0xff;
|
2022-02-20 02:26:27 -05:00
|
|
|
|
2023-08-11 22:29:53 +02:00
|
|
|
mouse_subtract_coords(&delta_x, &delta_y, &o_x, &o_y, -127, 127, 1, 0);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2023-08-11 22:29:53 +02:00
|
|
|
if ((delta_x == -127) && o_x)
|
|
|
|
|
delta_x = 0x80 | ((-delta_x) & 0x7f);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2023-08-11 22:29:53 +02:00
|
|
|
if ((delta_y == -127) && o_y)
|
|
|
|
|
delta_y = 0x80 | ((-delta_y) & 0x7f);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(0xfe);
|
2023-08-11 22:29:53 +02:00
|
|
|
m24_kbd_adddata(delta_x);
|
|
|
|
|
m24_kbd_adddata(delta_y);
|
2020-12-05 20:15:53 +01:00
|
|
|
} else {
|
2023-08-11 22:29:53 +02:00
|
|
|
mouse_subtract_coords(&delta_x, &delta_y, &o_x, &o_y, -127, 127, 1, 0);
|
|
|
|
|
|
|
|
|
|
while (delta_x < -4) {
|
2022-07-27 15:17:53 -04:00
|
|
|
if (((key_queue_end - key_queue_start) & 0xf) > 14)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0xff;
|
2023-08-11 22:29:53 +02:00
|
|
|
delta_x += 4;
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[3]);
|
|
|
|
|
}
|
2023-08-11 22:29:53 +02:00
|
|
|
while (delta_x > 4) {
|
2022-07-27 15:17:53 -04:00
|
|
|
if (((key_queue_end - key_queue_start) & 0xf) > 14)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0xff;
|
2023-08-11 22:29:53 +02:00
|
|
|
delta_x -= 4;
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[4]);
|
|
|
|
|
}
|
2023-08-11 22:29:53 +02:00
|
|
|
while (delta_y < -4) {
|
2022-07-27 15:17:53 -04:00
|
|
|
if (((key_queue_end - key_queue_start) & 0xf) > 14)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0xff;
|
2023-08-11 22:29:53 +02:00
|
|
|
delta_y += 4;
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[5]);
|
|
|
|
|
}
|
2023-08-11 22:29:53 +02:00
|
|
|
while (delta_y > 4) {
|
2022-07-27 15:17:53 -04:00
|
|
|
if (((key_queue_end - key_queue_start) & 0xf) > 14)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0xff;
|
2023-08-11 22:29:53 +02:00
|
|
|
delta_y -= 4;
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_adddata(m24_kbd->scan[6]);
|
|
|
|
|
}
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0;
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
/* Remapping as follows:
|
|
|
|
|
|
|
|
|
|
- Left Windows (E0 5B) -> NUMPAD 00 (54);
|
|
|
|
|
- Print Screen (E0 37) -> SCR PRT (55);
|
|
|
|
|
- Menu (E0 5D) -> HELP (56);
|
|
|
|
|
- NumPad Enter (E0 1C) -> NUMPAD ENTER (57).
|
|
|
|
|
- Left (E0 4B) -> LEFT (58);
|
|
|
|
|
- Down (E0 50) -> DOWN (59);
|
|
|
|
|
- Right (E0 4D) -> RIGHT (5A);
|
|
|
|
|
- Up (E0 48) -> UP (5B);
|
|
|
|
|
- Page Up (E0 49) -> CLEAR (5C);
|
|
|
|
|
- Page Down (E0 51) -> BREAK (5D);
|
|
|
|
|
- CE Key (56) -> CE KEY (5E);
|
|
|
|
|
WARNING: The Olivetti CE Key is undocumented, but can be inferred from the fact
|
|
|
|
|
its position is missing in the shown layout, it being used by the Italian
|
|
|
|
|
keyboard layout, the keyboard is called 103-key, but only 102 keys are
|
|
|
|
|
shown.
|
|
|
|
|
- NumPad / (E0 35) -> NUMPAD / (5F);
|
|
|
|
|
- F11 (57) -> F11 (60);
|
|
|
|
|
- F12 (58) -> F12 (61);
|
|
|
|
|
- Insert (E0 52) -> F13 (62);
|
|
|
|
|
- Home (E0 47) -> F14 (63);
|
|
|
|
|
- Delete (E0 53) -> F15 (64);
|
|
|
|
|
- End (E0 4F) -> F16 (65);
|
|
|
|
|
- Right Alt (Gr)(E0 38) -> F16 (66);
|
|
|
|
|
- Right Windows (E0 5C) -> F18 (67).
|
|
|
|
|
*/
|
|
|
|
|
const scancode scancode_olivetti_m24_deluxe[512] = {
|
|
|
|
|
// clang-format off
|
|
|
|
|
{ {0}, {0} }, { {0x01, 0}, {0x81, 0} },
|
|
|
|
|
{ {0x02, 0}, {0x82, 0} }, { {0x03, 0}, {0x83, 0} },
|
|
|
|
|
{ {0x04, 0}, {0x84, 0} }, { {0x05, 0}, {0x85, 0} },
|
|
|
|
|
{ {0x06, 0}, {0x86, 0} }, { {0x07, 0}, {0x87, 0} },
|
|
|
|
|
{ {0x08, 0}, {0x88, 0} }, { {0x09, 0}, {0x89, 0} },
|
|
|
|
|
{ {0x0a, 0}, {0x8a, 0} }, { {0x0b, 0}, {0x8b, 0} },
|
|
|
|
|
{ {0x0c, 0}, {0x8c, 0} }, { {0x0d, 0}, {0x8d, 0} },
|
|
|
|
|
{ {0x0e, 0}, {0x8e, 0} }, { {0x0f, 0}, {0x8f, 0} },
|
|
|
|
|
{ {0x10, 0}, {0x90, 0} }, { {0x11, 0}, {0x91, 0} },
|
|
|
|
|
{ {0x12, 0}, {0x92, 0} }, { {0x13, 0}, {0x93, 0} },
|
|
|
|
|
{ {0x14, 0}, {0x94, 0} }, { {0x15, 0}, {0x95, 0} },
|
|
|
|
|
{ {0x16, 0}, {0x96, 0} }, { {0x17, 0}, {0x97, 0} },
|
|
|
|
|
{ {0x18, 0}, {0x98, 0} }, { {0x19, 0}, {0x99, 0} },
|
|
|
|
|
{ {0x1a, 0}, {0x9a, 0} }, { {0x1b, 0}, {0x9b, 0} },
|
|
|
|
|
{ {0x1c, 0}, {0x9c, 0} }, { {0x1d, 0}, {0x9d, 0} },
|
|
|
|
|
{ {0x1e, 0}, {0x9e, 0} }, { {0x1f, 0}, {0x9f, 0} },
|
|
|
|
|
{ {0x20, 0}, {0xa0, 0} }, { {0x21, 0}, {0xa1, 0} },
|
|
|
|
|
{ {0x22, 0}, {0xa2, 0} }, { {0x23, 0}, {0xa3, 0} },
|
|
|
|
|
{ {0x24, 0}, {0xa4, 0} }, { {0x25, 0}, {0xa5, 0} },
|
|
|
|
|
{ {0x26, 0}, {0xa6, 0} }, { {0x27, 0}, {0xa7, 0} },
|
|
|
|
|
{ {0x28, 0}, {0xa8, 0} }, { {0x29, 0}, {0xa9, 0} },
|
|
|
|
|
{ {0x2a, 0}, {0xaa, 0} }, { {0x2b, 0}, {0xab, 0} },
|
|
|
|
|
{ {0x2c, 0}, {0xac, 0} }, { {0x2d, 0}, {0xad, 0} },
|
|
|
|
|
{ {0x2e, 0}, {0xae, 0} }, { {0x2f, 0}, {0xaf, 0} },
|
|
|
|
|
{ {0x30, 0}, {0xb0, 0} }, { {0x31, 0}, {0xb1, 0} },
|
|
|
|
|
{ {0x32, 0}, {0xb2, 0} }, { {0x33, 0}, {0xb3, 0} },
|
|
|
|
|
{ {0x34, 0}, {0xb4, 0} }, { {0x35, 0}, {0xb5, 0} },
|
|
|
|
|
{ {0x36, 0}, {0xb6, 0} }, { {0x37, 0}, {0xb7, 0} },
|
|
|
|
|
{ {0x38, 0}, {0xb8, 0} }, { {0x39, 0}, {0xb9, 0} },
|
|
|
|
|
{ {0x3a, 0}, {0xba, 0} }, { {0x3b, 0}, {0xbb, 0} },
|
|
|
|
|
{ {0x3c, 0}, {0xbc, 0} }, { {0x3d, 0}, {0xbd, 0} },
|
|
|
|
|
{ {0x3e, 0}, {0xbe, 0} }, { {0x3f, 0}, {0xbf, 0} },
|
|
|
|
|
{ {0x40, 0}, {0xc0, 0} }, { {0x41, 0}, {0xc1, 0} },
|
|
|
|
|
{ {0x42, 0}, {0xc2, 0} }, { {0x43, 0}, {0xc3, 0} },
|
|
|
|
|
{ {0x44, 0}, {0xc4, 0} }, { {0x45, 0}, {0xc5, 0} },
|
|
|
|
|
{ {0x46, 0}, {0xc6, 0} }, { {0x47, 0}, {0xc7, 0} },
|
|
|
|
|
{ {0x48, 0}, {0xc8, 0} }, { {0x49, 0}, {0xc9, 0} },
|
|
|
|
|
{ {0x4a, 0}, {0xca, 0} }, { {0x4b, 0}, {0xcb, 0} },
|
|
|
|
|
{ {0x4c, 0}, {0xcc, 0} }, { {0x4d, 0}, {0xcd, 0} },
|
|
|
|
|
{ {0x4e, 0}, {0xce, 0} }, { {0x4f, 0}, {0xcf, 0} },
|
|
|
|
|
{ {0x50, 0}, {0xd0, 0} }, { {0x51, 0}, {0xd1, 0} },
|
|
|
|
|
{ {0x52, 0}, {0xd2, 0} }, { {0x53, 0}, {0xd3, 0} },
|
|
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0x5e, 0}, {0xde, 0} }, { {0x60, 0}, {0xe0, 0} }, /*054*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x61, 0}, {0xe1, 0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*058*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*05c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*060*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*064*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*068*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*06c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*070*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*074*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*078*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*07c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*080*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*084*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*088*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*08c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*090*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*094*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*098*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*09c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0a0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0a4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0a8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0ac*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0b0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0b4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0b8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0bc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0c0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0c4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0c8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0cc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0d0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0d4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0d8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0dc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0e0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0e4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0e8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0ec*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0f0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0f4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0f8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0fc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*100*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*104*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*108*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*10c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*110*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*114*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*118*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x57, 0}, {0xd7, 0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*11c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*120*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*124*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*128*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*12c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*130*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0x5f, 0}, {0xdf, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0x37, 0}, {0xb7, 0} }, /*134*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x66, 0}, {0xe6, 0} }, { {0x55, 0}, {0xd5, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*138*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*13c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*140*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0x46, 0}, {0xc6, 0} }, { {0x63, 0}, {0xe3, 0} }, /*144*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x5b, 0}, {0xdb, 0} }, { {0x5c, 0}, {0xdc, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0x58, 0}, {0xd8, 0} }, /*148*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0x5a, 0}, {0xda, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0x65, 0}, {0xe5, 0} }, /*14c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x59, 0}, {0xd9, 0} }, { {0x5d, 0}, {0xdd, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0x62, 0}, {0xe2, 0} }, { {0x64, 0}, {0xe4, 0} }, /*150*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*154*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0x54, 0}, {0xd4, 0} }, /*158*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x67, 0}, {0xe7, 0} }, { {0x56, 0}, {0xd6, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*15c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*160*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*164*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*168*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*16c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*170*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*174*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*148*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*17c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*180*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*184*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*188*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*18c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*190*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*194*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*198*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*19c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1a0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1a4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1a8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1ac*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1b0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1b4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1b8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1bc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1c0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1c4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1c8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1cc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1d0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1d4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1d8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1dc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1e0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1e4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1e8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1ec*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1f0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1f4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1f8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} } /*1fc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
// clang-format on
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Remapping as follows:
|
|
|
|
|
|
|
|
|
|
- Left Windows (E0 5B) -> 54;
|
|
|
|
|
- Right Windows (E0 5C) -> 56;
|
|
|
|
|
- Menu (E0 5D) -> 5C.
|
|
|
|
|
*/
|
|
|
|
|
const scancode scancode_olivetti_m240[512] = {
|
|
|
|
|
// clang-format off
|
|
|
|
|
{ {0}, {0} }, { {0x01, 0}, {0x81, 0} },
|
|
|
|
|
{ {0x02, 0}, {0x82, 0} }, { {0x03, 0}, {0x83, 0} },
|
|
|
|
|
{ {0x04, 0}, {0x84, 0} }, { {0x05, 0}, {0x85, 0} },
|
|
|
|
|
{ {0x06, 0}, {0x86, 0} }, { {0x07, 0}, {0x87, 0} },
|
|
|
|
|
{ {0x08, 0}, {0x88, 0} }, { {0x09, 0}, {0x89, 0} },
|
|
|
|
|
{ {0x0a, 0}, {0x8a, 0} }, { {0x0b, 0}, {0x8b, 0} },
|
|
|
|
|
{ {0x0c, 0}, {0x8c, 0} }, { {0x0d, 0}, {0x8d, 0} },
|
|
|
|
|
{ {0x0e, 0}, {0x8e, 0} }, { {0x0f, 0}, {0x8f, 0} },
|
|
|
|
|
{ {0x10, 0}, {0x90, 0} }, { {0x11, 0}, {0x91, 0} },
|
|
|
|
|
{ {0x12, 0}, {0x92, 0} }, { {0x13, 0}, {0x93, 0} },
|
|
|
|
|
{ {0x14, 0}, {0x94, 0} }, { {0x15, 0}, {0x95, 0} },
|
|
|
|
|
{ {0x16, 0}, {0x96, 0} }, { {0x17, 0}, {0x97, 0} },
|
|
|
|
|
{ {0x18, 0}, {0x98, 0} }, { {0x19, 0}, {0x99, 0} },
|
|
|
|
|
{ {0x1a, 0}, {0x9a, 0} }, { {0x1b, 0}, {0x9b, 0} },
|
|
|
|
|
{ {0x1c, 0}, {0x9c, 0} }, { {0x1d, 0}, {0x9d, 0} },
|
|
|
|
|
{ {0x1e, 0}, {0x9e, 0} }, { {0x1f, 0}, {0x9f, 0} },
|
|
|
|
|
{ {0x20, 0}, {0xa0, 0} }, { {0x21, 0}, {0xa1, 0} },
|
|
|
|
|
{ {0x22, 0}, {0xa2, 0} }, { {0x23, 0}, {0xa3, 0} },
|
|
|
|
|
{ {0x24, 0}, {0xa4, 0} }, { {0x25, 0}, {0xa5, 0} },
|
|
|
|
|
{ {0x26, 0}, {0xa6, 0} }, { {0x27, 0}, {0xa7, 0} },
|
|
|
|
|
{ {0x28, 0}, {0xa8, 0} }, { {0x29, 0}, {0xa9, 0} },
|
|
|
|
|
{ {0x2a, 0}, {0xaa, 0} }, { {0x2b, 0}, {0xab, 0} },
|
|
|
|
|
{ {0x2c, 0}, {0xac, 0} }, { {0x2d, 0}, {0xad, 0} },
|
|
|
|
|
{ {0x2e, 0}, {0xae, 0} }, { {0x2f, 0}, {0xaf, 0} },
|
|
|
|
|
{ {0x30, 0}, {0xb0, 0} }, { {0x31, 0}, {0xb1, 0} },
|
|
|
|
|
{ {0x32, 0}, {0xb2, 0} }, { {0x33, 0}, {0xb3, 0} },
|
|
|
|
|
{ {0x34, 0}, {0xb4, 0} }, { {0x35, 0}, {0xb5, 0} },
|
|
|
|
|
{ {0x36, 0}, {0xb6, 0} }, { {0x37, 0}, {0xb7, 0} },
|
|
|
|
|
{ {0x38, 0}, {0xb8, 0} }, { {0x39, 0}, {0xb9, 0} },
|
|
|
|
|
{ {0x3a, 0}, {0xba, 0} }, { {0x3b, 0}, {0xbb, 0} },
|
|
|
|
|
{ {0x3c, 0}, {0xbc, 0} }, { {0x3d, 0}, {0xbd, 0} },
|
|
|
|
|
{ {0x3e, 0}, {0xbe, 0} }, { {0x3f, 0}, {0xbf, 0} },
|
|
|
|
|
{ {0x40, 0}, {0xc0, 0} }, { {0x41, 0}, {0xc1, 0} },
|
|
|
|
|
{ {0x42, 0}, {0xc2, 0} }, { {0x43, 0}, {0xc3, 0} },
|
|
|
|
|
{ {0x44, 0}, {0xc4, 0} }, { {0x45, 0}, {0xc5, 0} },
|
|
|
|
|
{ {0x46, 0}, {0xc6, 0} }, { {0x47, 0}, {0xc7, 0} },
|
|
|
|
|
{ {0x48, 0}, {0xc8, 0} }, { {0x49, 0}, {0xc9, 0} },
|
|
|
|
|
{ {0x4a, 0}, {0xca, 0} }, { {0x4b, 0}, {0xcb, 0} },
|
|
|
|
|
{ {0x4c, 0}, {0xcc, 0} }, { {0x4d, 0}, {0xcd, 0} },
|
|
|
|
|
{ {0x4e, 0}, {0xce, 0} }, { {0x4f, 0}, {0xcf, 0} },
|
|
|
|
|
{ {0x50, 0}, {0xd0, 0} }, { {0x51, 0}, {0xd1, 0} },
|
|
|
|
|
{ {0x52, 0}, {0xd2, 0} }, { {0x53, 0}, {0xd3, 0} },
|
|
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*054*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*058*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*05c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*060*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*064*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*068*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*06c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*070*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*074*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*078*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*07c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*080*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*084*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*088*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*08c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*090*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*094*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*098*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*09c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0a0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0a4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0a8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0ac*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0b0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0b4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0b8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0bc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0c0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0c4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0c8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0cc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0d0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0d4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0d8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0dc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0e0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0e4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0e8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0ec*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0f0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0f4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0f8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*0fc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*100*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*104*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*108*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*10c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*110*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*114*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*118*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x1c, 0}, {0x9c, 0} }, { {0x1d, 0}, {0x9d, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*11c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*120*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*124*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*128*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*12c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*130*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0x35, 0}, {0xb5, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0x37, 0}, {0xb7, 0} }, /*134*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x38, 0}, {0xb8, 0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*138*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*13c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*140*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0x46, 0}, {0xc6, 0} }, { {0x47, 0}, {0xc7, 0} }, /*144*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x48, 0}, {0xc8, 0} }, { {0x49, 0}, {0xc9, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0x4b, 0}, {0xcb, 0} }, /*148*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0x4d, 0}, {0xcd, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0x4f, 0}, {0xcf, 0} }, /*14c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0x50, 0}, {0xd0, 0} }, { {0x51, 0}, {0xd1, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0x52, 0}, {0xd2, 0} }, { {0x53, 0}, {0xd3, 0} }, /*150*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*154*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*158*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0x54, 0}, {0xd4, 0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0x56, 0}, {0xd6, 0} }, { {0x5c, 0}, {0xdc, 0} }, /*15c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*160*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*164*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*168*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*16c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*170*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*174*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*148*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*17c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*180*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*184*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*188*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*18c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*190*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*194*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*198*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*19c*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1a0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1a4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1a8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1ac*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1b0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1b4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1b8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1bc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1c0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1c4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1c8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1cc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1d0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1d4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1d8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1dc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1e0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1e4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1e8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1ec*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1f0*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1f4*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} }, /*1f8*/
|
2022-11-19 04:34:14 +01:00
|
|
|
{ {0}, {0} }, { {0}, {0} },
|
2023-01-06 15:36:05 -05:00
|
|
|
{ {0}, {0} }, { {0}, {0} } /*1fc*/
|
2022-11-19 04:34:14 +01:00
|
|
|
// clang-format on
|
|
|
|
|
};
|
|
|
|
|
|
2020-12-05 20:15:53 +01:00
|
|
|
static void
|
2021-04-17 17:12:02 -03:00
|
|
|
m24_kbd_init(m24_kbd_t *kbd)
|
2020-12-19 00:06:41 +01:00
|
|
|
{
|
2022-02-20 02:26:27 -05:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
/* Initialize the keyboard. */
|
2020-12-05 20:15:53 +01:00
|
|
|
io_sethandler(0x0060, 2,
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_read, NULL, NULL, m24_kbd_write, NULL, NULL, kbd);
|
2020-12-05 20:15:53 +01:00
|
|
|
io_sethandler(0x0064, 1,
|
2022-07-27 15:17:53 -04:00
|
|
|
m24_kbd_read, NULL, NULL, m24_kbd_write, NULL, NULL, kbd);
|
2020-12-05 20:15:53 +01:00
|
|
|
keyboard_send = m24_kbd_adddata_ex;
|
|
|
|
|
m24_kbd_reset(kbd);
|
|
|
|
|
timer_add(&kbd->send_delay_timer, m24_kbd_poll, kbd, 1);
|
|
|
|
|
|
2022-11-24 20:54:28 +01:00
|
|
|
if (mouse_type == MOUSE_TYPE_INTERNAL) {
|
|
|
|
|
/* Tell mouse driver about our internal mouse. */
|
|
|
|
|
mouse_reset();
|
|
|
|
|
mouse_set_buttons(2);
|
|
|
|
|
mouse_set_poll(ms_poll, kbd);
|
|
|
|
|
}
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
keyboard_set_table((kbd->id == 0x01) ? scancode_olivetti_m24_deluxe : scancode_olivetti_m240);
|
2020-12-19 00:06:41 +01:00
|
|
|
keyboard_set_is_amstrad(0);
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
m19_vid_out(uint16_t addr, uint8_t val, void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m19_vid_t *vid = (m19_vid_t *) priv;
|
|
|
|
|
int oldmode = vid->mode;
|
2020-12-19 00:06:41 +01:00
|
|
|
|
|
|
|
|
/* activating plantronics mode */
|
|
|
|
|
if (addr == 0x3dd) {
|
2022-07-27 15:17:53 -04:00
|
|
|
/* already in graphics mode */
|
|
|
|
|
if ((val & 0x30) && (vid->ogc.cga.cgamode & 0x2))
|
|
|
|
|
vid->mode = PLANTRONICS_MODE;
|
|
|
|
|
else
|
|
|
|
|
vid->mode = OLIVETTI_OGC_MODE;
|
|
|
|
|
/* setting graphics mode */
|
2020-12-19 00:06:41 +01:00
|
|
|
} else if (addr == 0x3d8) {
|
2022-07-27 15:17:53 -04:00
|
|
|
if ((val & 0x2) && (vid->colorplus.control & 0x30))
|
|
|
|
|
vid->mode = PLANTRONICS_MODE;
|
|
|
|
|
else
|
|
|
|
|
vid->mode = OLIVETTI_OGC_MODE;
|
2020-12-19 00:06:41 +01:00
|
|
|
}
|
|
|
|
|
/* video mode changed */
|
|
|
|
|
if (oldmode != vid->mode) {
|
2022-07-27 15:17:53 -04:00
|
|
|
/* activate Plantronics emulation */
|
|
|
|
|
if (vid->mode == PLANTRONICS_MODE) {
|
|
|
|
|
timer_disable(&vid->ogc.cga.timer);
|
|
|
|
|
timer_set_delay_u64(&vid->colorplus.cga.timer, 0);
|
|
|
|
|
/* return to OGC mode */
|
|
|
|
|
} else {
|
|
|
|
|
timer_disable(&vid->colorplus.cga.timer);
|
|
|
|
|
timer_set_delay_u64(&vid->ogc.cga.timer, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
colorplus_recalctimings(&vid->colorplus);
|
|
|
|
|
ogc_recalctimings(&vid->ogc);
|
2020-12-19 00:06:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
colorplus_out(addr, val, &vid->colorplus);
|
|
|
|
|
ogc_out(addr, val, &vid->ogc);
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint8_t
|
|
|
|
|
m19_vid_in(uint16_t addr, void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m19_vid_t *vid = (m19_vid_t *) priv;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
if (vid->mode == PLANTRONICS_MODE)
|
2022-07-27 15:17:53 -04:00
|
|
|
return colorplus_in(addr, &vid->colorplus);
|
2020-12-19 00:06:41 +01:00
|
|
|
else
|
2022-07-27 15:17:53 -04:00
|
|
|
return ogc_in(addr, &vid->ogc);
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint8_t
|
|
|
|
|
m19_vid_read(uint32_t addr, void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m19_vid_t *vid = (m19_vid_t *) priv;
|
2020-12-19 00:06:41 +01:00
|
|
|
|
|
|
|
|
vid->colorplus.cga.mapping = vid->ogc.cga.mapping;
|
|
|
|
|
if (vid->mode == PLANTRONICS_MODE)
|
2022-07-27 15:17:53 -04:00
|
|
|
return colorplus_read(addr, &vid->colorplus);
|
2020-12-19 00:06:41 +01:00
|
|
|
else
|
2022-07-27 15:17:53 -04:00
|
|
|
return ogc_read(addr, &vid->ogc);
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
m19_vid_write(uint32_t addr, uint8_t val, void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m19_vid_t *vid = (m19_vid_t *) priv;
|
2020-12-19 00:06:41 +01:00
|
|
|
|
|
|
|
|
colorplus_write(addr, val, &vid->colorplus);
|
|
|
|
|
ogc_write(addr, val, &vid->ogc);
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
m19_vid_close(void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m19_vid_t *vid = (m19_vid_t *) priv;
|
2020-12-19 00:06:41 +01:00
|
|
|
|
|
|
|
|
free(vid->ogc.cga.vram);
|
2020-12-05 20:15:53 +01:00
|
|
|
free(vid->colorplus.cga.vram);
|
2020-12-19 00:06:41 +01:00
|
|
|
free(vid);
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
m19_vid_speed_changed(void *priv)
|
|
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
m19_vid_t *vid = (m19_vid_t *) priv;
|
2020-12-19 00:06:41 +01:00
|
|
|
|
|
|
|
|
colorplus_recalctimings(&vid->colorplus);
|
|
|
|
|
ogc_recalctimings(&vid->ogc);
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2021-04-17 17:12:02 -03:00
|
|
|
m19_vid_init(m19_vid_t *vid)
|
2020-12-19 00:06:41 +01:00
|
|
|
{
|
2021-07-15 03:01:54 +02:00
|
|
|
device_context(&m19_vid_device);
|
2021-07-15 02:52:45 +02:00
|
|
|
|
2023-06-09 23:46:54 -04:00
|
|
|
#if 0
|
|
|
|
|
int display_type;
|
|
|
|
|
#endif
|
2020-12-19 00:06:41 +01:00
|
|
|
vid->mode = OLIVETTI_OGC_MODE;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
video_inform(VIDEO_FLAG_TYPE_CGA, &timing_m19_vid);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2023-06-09 23:46:54 -04:00
|
|
|
#if 0
|
|
|
|
|
display_type = device_get_config_int("display_type");
|
|
|
|
|
#endif
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
/* OGC emulation part begin */
|
2023-08-15 01:06:10 +02:00
|
|
|
loadfont("roms/machines/m19/MBM2764-30 8514 107 AB PCF3.BIN", 7);
|
2020-12-19 00:06:41 +01:00
|
|
|
/* composite is not working yet */
|
2022-07-27 15:17:53 -04:00
|
|
|
vid->ogc.cga.composite = 0; // (display_type != CGA_RGB);
|
|
|
|
|
vid->ogc.cga.revision = device_get_config_int("composite_type");
|
2021-07-15 02:52:45 +02:00
|
|
|
vid->ogc.cga.snow_enabled = device_get_config_int("snow_enabled");
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
vid->ogc.cga.vram = malloc(0x8000);
|
|
|
|
|
|
2023-06-09 23:46:54 -04:00
|
|
|
#if 0
|
|
|
|
|
cga_comp_init(vid->ogc.cga.revision);
|
|
|
|
|
#endif
|
2020-12-19 00:06:41 +01:00
|
|
|
|
2021-07-15 02:52:45 +02:00
|
|
|
vid->ogc.cga.rgb_type = device_get_config_int("rgb_type");
|
2022-07-27 15:17:53 -04:00
|
|
|
cga_palette = (vid->ogc.cga.rgb_type << 1);
|
2020-12-19 00:06:41 +01:00
|
|
|
cgapal_rebuild();
|
|
|
|
|
ogc_mdaattr_rebuild();
|
|
|
|
|
|
|
|
|
|
/* color display */
|
2022-07-27 15:17:53 -04:00
|
|
|
if (device_get_config_int("rgb_type") == 0 || device_get_config_int("rgb_type") == 4)
|
|
|
|
|
vid->ogc.mono_display = 0;
|
2021-07-15 02:52:45 +02:00
|
|
|
else
|
2022-07-27 15:17:53 -04:00
|
|
|
vid->ogc.mono_display = 1;
|
2020-12-19 00:06:41 +01:00
|
|
|
/* OGC emulation part end */
|
|
|
|
|
|
|
|
|
|
/* Plantronics emulation part begin*/
|
|
|
|
|
/* composite is not working yet */
|
|
|
|
|
vid->colorplus.cga.composite = 0; //(display_type != CGA_RGB);
|
2023-06-09 23:46:54 -04:00
|
|
|
#if 0
|
|
|
|
|
vid->colorplus.cga.snow_enabled = device_get_config_int("snow_enabled");
|
|
|
|
|
#endif
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
vid->colorplus.cga.vram = malloc(0x8000);
|
2020-12-19 00:06:41 +01:00
|
|
|
|
2023-06-09 23:46:54 -04:00
|
|
|
#if 0
|
|
|
|
|
vid->colorplus.cga.cgamode = 0x1;
|
|
|
|
|
#endif
|
2020-12-19 00:06:41 +01:00
|
|
|
/* Plantronics emulation part end*/
|
|
|
|
|
|
|
|
|
|
timer_add(&vid->ogc.cga.timer, ogc_poll, &vid->ogc, 1);
|
|
|
|
|
timer_add(&vid->colorplus.cga.timer, colorplus_poll, &vid->colorplus, 1);
|
|
|
|
|
timer_disable(&vid->colorplus.cga.timer);
|
2022-07-27 15:17:53 -04:00
|
|
|
mem_mapping_add(&vid->ogc.cga.mapping, 0xb8000, 0x08000, m19_vid_read, NULL, NULL, m19_vid_write, NULL, NULL, NULL, MEM_MAPPING_EXTERNAL, vid);
|
2020-12-19 00:06:41 +01:00
|
|
|
io_sethandler(0x03d0, 0x0010, m19_vid_in, NULL, NULL, m19_vid_out, NULL, NULL, vid);
|
|
|
|
|
|
|
|
|
|
vid->mode = OLIVETTI_OGC_MODE;
|
2021-07-15 02:52:45 +02:00
|
|
|
|
|
|
|
|
device_context_restore();
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const device_t m24_kbd_device = {
|
2022-07-27 15:17:53 -04:00
|
|
|
.name = "Olivetti M24 keyboard and mouse",
|
2022-03-13 09:46:07 -04:00
|
|
|
.internal_name = "m24_kbd",
|
2022-07-27 15:17:53 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0,
|
|
|
|
|
.init = NULL,
|
|
|
|
|
.close = m24_kbd_close,
|
|
|
|
|
.reset = m24_kbd_reset,
|
2022-03-13 09:46:07 -04:00
|
|
|
{ .available = NULL },
|
|
|
|
|
.speed_changed = NULL,
|
2022-07-27 15:17:53 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = NULL
|
2020-12-05 20:15:53 +01:00
|
|
|
};
|
|
|
|
|
|
2022-03-13 09:46:07 -04:00
|
|
|
const device_config_t m19_vid_config[] = {
|
2022-07-27 15:17:53 -04:00
|
|
|
// clang-format off
|
2022-03-13 09:46:07 -04:00
|
|
|
{
|
|
|
|
|
/* Olivetti / ATT compatible displays */
|
|
|
|
|
.name = "rgb_type",
|
|
|
|
|
.description = "RGB type",
|
|
|
|
|
.type = CONFIG_SELECTION,
|
|
|
|
|
.default_string = "",
|
|
|
|
|
.default_int = CGA_RGB,
|
|
|
|
|
.file_filter = "",
|
|
|
|
|
.spinner = { 0 },
|
|
|
|
|
.selection = {
|
|
|
|
|
{ .description = "Color", .value = 0 },
|
|
|
|
|
{ .description = "Green Monochrome", .value = 1 },
|
|
|
|
|
{ .description = "Amber Monochrome", .value = 2 },
|
|
|
|
|
{ .description = "Gray Monochrome", .value = 3 },
|
2022-04-02 18:14:24 -04:00
|
|
|
{ .description = "" }
|
2021-07-15 02:52:45 +02:00
|
|
|
}
|
2022-03-13 09:46:07 -04:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.name = "snow_enabled",
|
|
|
|
|
.description = "Snow emulation",
|
|
|
|
|
.type = CONFIG_BINARY,
|
|
|
|
|
.default_string = "",
|
|
|
|
|
.default_int = 1,
|
|
|
|
|
},
|
2022-04-02 18:14:24 -04:00
|
|
|
{ .name = "", .description = "", .type = CONFIG_END }
|
2022-07-27 15:17:53 -04:00
|
|
|
// clang-format on
|
2021-07-15 02:52:45 +02:00
|
|
|
};
|
|
|
|
|
|
2020-12-05 20:15:53 +01:00
|
|
|
const device_t m19_vid_device = {
|
2022-07-27 15:17:53 -04:00
|
|
|
.name = "Olivetti M19 graphics card",
|
2022-03-13 09:46:07 -04:00
|
|
|
.internal_name = "m19_vid",
|
2022-07-27 15:17:53 -04:00
|
|
|
.flags = 0,
|
|
|
|
|
.local = 0,
|
|
|
|
|
.init = NULL,
|
|
|
|
|
.close = m19_vid_close,
|
|
|
|
|
.reset = NULL,
|
2022-03-13 09:46:07 -04:00
|
|
|
{ .available = NULL },
|
|
|
|
|
.speed_changed = m19_vid_speed_changed,
|
2022-07-27 15:17:53 -04:00
|
|
|
.force_redraw = NULL,
|
|
|
|
|
.config = m19_vid_config
|
2020-12-05 20:15:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static uint8_t
|
2023-06-09 23:46:54 -04:00
|
|
|
m24_read(uint16_t port, UNUSED(void *priv))
|
2020-12-05 20:15:53 +01:00
|
|
|
{
|
2023-05-11 03:02:36 -04:00
|
|
|
uint8_t ret = 0x00;
|
|
|
|
|
int fdd_count = 0;
|
2020-12-19 00:06:41 +01:00
|
|
|
|
2020-12-05 20:15:53 +01:00
|
|
|
switch (port) {
|
2022-11-19 04:34:14 +01:00
|
|
|
case 0x62:
|
|
|
|
|
/* Control Port B Read */
|
|
|
|
|
ret = 0xff;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x65:
|
|
|
|
|
/* Communications Port Read */
|
|
|
|
|
ret = 0xff;
|
|
|
|
|
break;
|
|
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
/*
|
|
|
|
|
* port 66:
|
|
|
|
|
* DIPSW-0 on mainboard (off=present=1)
|
|
|
|
|
* bit 7 - 2764 (off) / 2732 (on) ROM (BIOS < 1.36)
|
|
|
|
|
* bit 7 - Use (off) / do not use (on) memory bank 1 (BIOS >= 1.36)
|
|
|
|
|
* bit 6 - n/a
|
|
|
|
|
* bit 5 - 8530 (off) / 8250 (on) SCC
|
|
|
|
|
* bit 4 - 8087 present
|
|
|
|
|
* bits 3-0 - installed memory
|
|
|
|
|
*/
|
|
|
|
|
case 0x66:
|
|
|
|
|
/* Switch 5 - 8087 present */
|
|
|
|
|
if (hasfpu)
|
|
|
|
|
ret |= 0x10;
|
|
|
|
|
/*
|
|
|
|
|
* Switches 1, 2, 3, 4 - installed memory
|
|
|
|
|
* Switch 8 - Use memory bank 1
|
|
|
|
|
*/
|
|
|
|
|
switch (mem_size) {
|
|
|
|
|
case 128:
|
|
|
|
|
ret |= 0x1;
|
|
|
|
|
break;
|
|
|
|
|
case 256:
|
2022-10-20 00:18:02 +02:00
|
|
|
ret |= 0x2;
|
2022-07-27 15:17:53 -04:00
|
|
|
break;
|
|
|
|
|
case 384:
|
|
|
|
|
ret |= 0x1 | 0x2 | 0x80;
|
|
|
|
|
break;
|
|
|
|
|
case 512:
|
|
|
|
|
ret |= 0x8;
|
|
|
|
|
break;
|
|
|
|
|
case 640:
|
|
|
|
|
ret |= 0x1 | 0x8 | 0x80;
|
|
|
|
|
break;
|
2022-10-20 00:18:02 +02:00
|
|
|
default:
|
|
|
|
|
break;
|
2022-07-27 15:17:53 -04:00
|
|
|
}
|
2022-10-20 00:18:02 +02:00
|
|
|
break;
|
2022-11-19 04:34:14 +01:00
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
/*
|
|
|
|
|
* port 67:
|
|
|
|
|
* DIPSW-1 on mainboard (off=present=1)
|
|
|
|
|
* bits 7-6 - number of drives
|
|
|
|
|
* bits 5-4 - display adapter
|
|
|
|
|
* bit 3 - video scroll CPU (on) / slow scroll (off)
|
|
|
|
|
* bit 2 - BIOS HD on mainboard (on) / on controller (off)
|
|
|
|
|
* bit 1 - FDD fast (off) / slow (on) start drive
|
|
|
|
|
* bit 0 - 96 TPI (720 KB 3.5") (off) / 48 TPI (360 KB 5.25") FDD drive
|
|
|
|
|
*
|
|
|
|
|
* Display adapter:
|
|
|
|
|
* off off 80x25 mono
|
|
|
|
|
* off on 40x25 color
|
|
|
|
|
* on off 80x25 color
|
|
|
|
|
* on on EGA/VGA (works only for BIOS ROM 1.43)
|
|
|
|
|
*/
|
|
|
|
|
case 0x67:
|
2023-05-11 03:02:36 -04:00
|
|
|
for (uint8_t i = 0; i < FDD_NUM; i++) {
|
2022-07-27 15:17:53 -04:00
|
|
|
if (fdd_get_flags(i))
|
|
|
|
|
fdd_count++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Switches 7, 8 - floppy drives. */
|
|
|
|
|
if (!fdd_count)
|
|
|
|
|
ret |= 0x00;
|
|
|
|
|
else
|
|
|
|
|
ret |= ((fdd_count - 1) << 6);
|
|
|
|
|
|
|
|
|
|
/* Switches 5, 6 - monitor type */
|
|
|
|
|
if (video_is_mda())
|
|
|
|
|
ret |= 0x30;
|
|
|
|
|
else if (video_is_cga())
|
|
|
|
|
ret |= 0x20; /* 0x10 would be 40x25 */
|
|
|
|
|
else
|
|
|
|
|
ret |= 0x0;
|
|
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
/* Switch 4 - The M21/M24 Theory of Operation says
|
|
|
|
|
"Reserved for HDU", same as for Switch 3 */
|
|
|
|
|
|
2022-07-27 15:17:53 -04:00
|
|
|
/* Switch 3 - Disable internal BIOS HD */
|
2022-11-19 04:34:14 +01:00
|
|
|
if (hdc_current != HDC_INTERNAL)
|
|
|
|
|
ret |= 0x4;
|
2022-07-27 15:17:53 -04:00
|
|
|
|
|
|
|
|
/* Switch 2 - Set fast startup */
|
|
|
|
|
ret |= 0x2;
|
2022-11-19 04:34:14 +01:00
|
|
|
|
|
|
|
|
/* 1 = 720 kB (3.5"), 0 = 360 kB (5.25") */
|
|
|
|
|
ret |= (fdd_doublestep_40(0) || fdd_doublestep_40(1)) ? 0x1 : 0x0;
|
|
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2022-11-19 04:34:14 +01:00
|
|
|
}
|
|
|
|
|
|
2023-05-11 03:02:36 -04:00
|
|
|
return ret;
|
2022-11-19 04:34:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static uint8_t
|
2023-06-09 23:46:54 -04:00
|
|
|
m240_read(uint16_t port, UNUSED(void *priv))
|
2022-11-19 04:34:14 +01:00
|
|
|
{
|
|
|
|
|
uint8_t ret = 0x00;
|
2023-05-11 03:02:36 -04:00
|
|
|
int fdd_count = 0;
|
2022-11-19 04:34:14 +01:00
|
|
|
|
|
|
|
|
switch (port) {
|
|
|
|
|
case 0x62:
|
|
|
|
|
/* SWA on Olivetti M240 mainboard (off=1) */
|
|
|
|
|
ret = 0x00;
|
|
|
|
|
if (ppi.pb & 0x8) {
|
|
|
|
|
/* Switches 4, 5 - floppy drives (number) */
|
2023-05-11 03:02:36 -04:00
|
|
|
for (uint8_t i = 0; i < FDD_NUM; i++) {
|
2022-11-19 04:34:14 +01:00
|
|
|
if (fdd_get_flags(i))
|
|
|
|
|
fdd_count++;
|
|
|
|
|
}
|
|
|
|
|
if (!fdd_count)
|
|
|
|
|
ret |= 0x00;
|
|
|
|
|
else
|
|
|
|
|
ret |= ((fdd_count - 1) << 2);
|
|
|
|
|
/* Switches 6, 7 - monitor type */
|
|
|
|
|
if (video_is_mda())
|
|
|
|
|
ret |= 0x3;
|
|
|
|
|
else if (video_is_cga())
|
|
|
|
|
ret |= 0x2; /* 0x10 would be 40x25 */
|
|
|
|
|
else
|
|
|
|
|
ret |= 0x0;
|
|
|
|
|
} else {
|
|
|
|
|
/* bit 2 always on */
|
|
|
|
|
ret |= 0x4;
|
|
|
|
|
/* Switch 8 - 8087 FPU. */
|
|
|
|
|
if (hasfpu)
|
|
|
|
|
ret |= 0x02;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 0x63:
|
|
|
|
|
/* Olivetti M240 SWB:
|
|
|
|
|
- Bit 7: 1 = MFDD (= high-density) unit present (Customer Test will then always think Drive 2 is absent),
|
|
|
|
|
0 = MFD unit absent;
|
|
|
|
|
- Bit 6: 1 = Second drive is 3.5" (for low density drive, this means 80-track),
|
|
|
|
|
0 = Second drive is 5.25" (for low density drive, this means 40-track).
|
|
|
|
|
- Bit 5: 1 = First drive is 3.5" (for low density drive, this means 80-track),
|
|
|
|
|
0 = First drive is 5.25" (for low density drive, this means 40-track).
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
ret = (fdd_is_hd(0) || fdd_is_hd(1)) ? 0x80 : 0x00;
|
|
|
|
|
ret |= fdd_doublestep_40(1) ? 0x40 : 0x00;
|
|
|
|
|
ret |= fdd_doublestep_40(0) ? 0x20 : 0x00;
|
2022-10-20 00:18:02 +02:00
|
|
|
break;
|
2023-06-09 23:46:54 -04:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2020-12-19 00:06:41 +01:00
|
|
|
}
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2023-05-11 03:02:36 -04:00
|
|
|
return ret;
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
/*
|
|
|
|
|
* Uses M21/M24/M240 keyboard controller and M24 102/103-key Deluxe keyboard.
|
|
|
|
|
*/
|
2020-12-05 20:15:53 +01:00
|
|
|
int
|
2021-04-17 17:12:02 -03:00
|
|
|
machine_xt_m24_init(const machine_t *model)
|
2020-12-05 20:15:53 +01:00
|
|
|
{
|
2022-07-27 15:17:53 -04:00
|
|
|
int ret;
|
2021-07-15 03:00:16 +02:00
|
|
|
m24_kbd_t *m24_kbd;
|
2022-10-23 15:39:42 +02:00
|
|
|
nvr_t *nvr;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-05-14 16:21:00 +02:00
|
|
|
ret = bios_load_interleaved("roms/machines/m24/olivetti_m24_bios_version_1.44_low_even.bin",
|
2022-07-27 15:17:53 -04:00
|
|
|
"roms/machines/m24/olivetti_m24_bios_version_1.44_high_odd.bin",
|
|
|
|
|
0x000fc000, 16384, 0);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2021-04-17 17:12:02 -03:00
|
|
|
m24_kbd = (m24_kbd_t *) malloc(sizeof(m24_kbd_t));
|
|
|
|
|
memset(m24_kbd, 0x00, sizeof(m24_kbd_t));
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
machine_common_init(model);
|
2021-02-07 17:27:14 +02:00
|
|
|
|
2021-04-17 17:12:02 -03:00
|
|
|
/* On-board FDC can be disabled only on M24SP */
|
2021-02-07 17:27:14 +02:00
|
|
|
if (fdc_type == FDC_INTERNAL)
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&fdc_xt_device);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
/* Address 66-67 = mainboard dip-switch settings */
|
2022-11-19 04:34:14 +01:00
|
|
|
io_sethandler(0x0065, 3, m24_read, NULL, NULL, NULL, NULL, NULL, NULL);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2021-05-20 22:51:55 -03:00
|
|
|
standalone_gameport_type = &gameport_device;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
nmi_init();
|
|
|
|
|
|
2022-10-23 15:39:42 +02:00
|
|
|
/* Allocate an NVR for this machine. */
|
|
|
|
|
nvr = (nvr_t *) malloc(sizeof(nvr_t));
|
|
|
|
|
if (nvr == NULL)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0;
|
2022-10-23 15:39:42 +02:00
|
|
|
memset(nvr, 0x00, sizeof(nvr_t));
|
|
|
|
|
|
|
|
|
|
mm58174_init(nvr, model->nvrmask + 1);
|
|
|
|
|
|
2023-02-06 04:12:46 -05:00
|
|
|
video_reset(gfxcard[0]);
|
2021-07-15 03:00:16 +02:00
|
|
|
|
2023-02-06 04:12:46 -05:00
|
|
|
if (gfxcard[0] == VID_INTERNAL)
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&ogc_m24_device);
|
2021-07-15 03:00:16 +02:00
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
pit_devs[0].set_out_func(pit_devs[0].data, 1, pit_refresh_timer_xt);
|
|
|
|
|
|
|
|
|
|
io_sethandler(0x0062, 1, m24_read, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
m24_kbd->id = 0x01;
|
|
|
|
|
|
2021-07-15 20:03:19 +02:00
|
|
|
m24_kbd_init(m24_kbd);
|
|
|
|
|
device_add_ex(&m24_kbd_device, m24_kbd);
|
|
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
if (hdc_current == HDC_INTERNAL)
|
|
|
|
|
device_add(&st506_xt_wd1002a_wx1_nobios_device);
|
|
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
return ret;
|
2020-12-05 20:15:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2022-11-19 04:34:14 +01:00
|
|
|
* Uses M21/M24/M240 keyboard controller and M240 keyboard.
|
2020-12-05 20:15:53 +01:00
|
|
|
*/
|
|
|
|
|
int
|
2021-04-17 17:12:02 -03:00
|
|
|
machine_xt_m240_init(const machine_t *model)
|
2020-12-05 20:15:53 +01:00
|
|
|
{
|
2022-11-19 08:49:04 -05:00
|
|
|
int ret;
|
2022-11-19 04:34:14 +01:00
|
|
|
m24_kbd_t *m24_kbd;
|
2022-10-30 16:34:42 +01:00
|
|
|
nvr_t *nvr;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2021-04-17 17:12:02 -03:00
|
|
|
ret = bios_load_interleaved("roms/machines/m240/olivetti_m240_pch6_2.04_low.bin",
|
2022-07-27 15:17:53 -04:00
|
|
|
"roms/machines/m240/olivetti_m240_pch5_2.04_high.bin",
|
|
|
|
|
0x000f8000, 32768, 0);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-11-19 04:34:14 +01:00
|
|
|
m24_kbd = (m24_kbd_t *) malloc(sizeof(m24_kbd_t));
|
|
|
|
|
memset(m24_kbd, 0x00, sizeof(m24_kbd_t));
|
|
|
|
|
|
2021-04-17 17:12:02 -03:00
|
|
|
machine_common_init(model);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2022-07-23 13:38:10 +02:00
|
|
|
pit_devs[0].set_out_func(pit_devs[0].data, 1, pit_refresh_timer_xt);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2021-07-04 17:40:39 +02:00
|
|
|
/* Address 66-67 = mainboard dip-switch settings */
|
2022-11-19 04:34:14 +01:00
|
|
|
io_sethandler(0x0062, 2, m240_read, NULL, NULL, NULL, NULL, NULL, NULL);
|
2021-07-04 17:40:39 +02:00
|
|
|
|
2022-02-20 02:26:27 -05:00
|
|
|
/*
|
2020-12-19 00:06:41 +01:00
|
|
|
* port 60: should return jumper settings only under unknown conditions
|
|
|
|
|
* SWB on mainboard (off=1)
|
|
|
|
|
* bit 7 - use BIOS HD on mainboard (on) / on controller (off)
|
2020-12-05 20:15:53 +01:00
|
|
|
* bit 6 - use OCG/CGA display adapter (on) / other display adapter (off)
|
|
|
|
|
*/
|
2022-11-19 04:34:14 +01:00
|
|
|
m24_kbd->id = 0x10;
|
|
|
|
|
|
|
|
|
|
m24_kbd_init(m24_kbd);
|
|
|
|
|
device_add_ex(&m24_kbd_device, m24_kbd);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2021-04-17 17:12:02 -03:00
|
|
|
if (fdc_type == FDC_INTERNAL)
|
2022-11-19 04:34:14 +01:00
|
|
|
device_add(&fdc_at_device); /* io.c logs clearly show it using port 3F7 */
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
if (joystick_type)
|
2022-07-27 15:17:53 -04:00
|
|
|
device_add(&gameport_device);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
nmi_init();
|
|
|
|
|
|
2022-10-30 16:34:42 +01:00
|
|
|
/* Allocate an NVR for this machine. */
|
|
|
|
|
nvr = (nvr_t *) malloc(sizeof(nvr_t));
|
|
|
|
|
if (nvr == NULL)
|
2023-05-11 03:02:36 -04:00
|
|
|
return 0;
|
2022-10-30 16:34:42 +01:00
|
|
|
memset(nvr, 0x00, sizeof(nvr_t));
|
|
|
|
|
|
|
|
|
|
mm58274_init(nvr, model->nvrmask + 1);
|
|
|
|
|
|
2022-11-09 04:37:44 +01:00
|
|
|
if (hdc_current == HDC_INTERNAL)
|
2022-11-09 04:32:59 +01:00
|
|
|
device_add(&st506_xt_wd1002a_wx1_nobios_device);
|
|
|
|
|
|
2020-12-05 20:15:53 +01:00
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2022-02-20 02:26:27 -05:00
|
|
|
* Current bugs:
|
2020-12-05 20:15:53 +01:00
|
|
|
* - 640x400x2 graphics mode not supported (bit 0 of register 0x3de cannot be set)
|
|
|
|
|
* - optional mouse emulation missing
|
2021-01-07 23:30:19 +01:00
|
|
|
* - setting CPU speed at 4.77MHz sometimes throws a timer error. If the machine is hard-resetted, the error disappears.
|
2020-12-05 20:15:53 +01:00
|
|
|
*/
|
|
|
|
|
int
|
2021-04-17 17:12:02 -03:00
|
|
|
machine_xt_m19_init(const machine_t *model)
|
2020-12-05 20:15:53 +01:00
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
2021-04-17 17:12:02 -03:00
|
|
|
ret = bios_load_linear("roms/machines/m19/BIOS.BIN",
|
2022-07-27 15:17:53 -04:00
|
|
|
0x000fc000, 16384, 0);
|
2023-08-15 01:06:10 +02:00
|
|
|
ret &= rom_present("roms/machines/m19/MBM2764-30 8514 107 AB PCF3.BIN");
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
if (bios_only || !ret)
|
2022-07-27 15:17:53 -04:00
|
|
|
return ret;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2021-04-17 17:12:02 -03:00
|
|
|
m19_vid_t *vid;
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
/* Do not move memory allocation elsewhere. */
|
2021-04-17 17:12:02 -03:00
|
|
|
vid = (m19_vid_t *) malloc(sizeof(m19_vid_t));
|
|
|
|
|
memset(vid, 0x00, sizeof(m19_vid_t));
|
|
|
|
|
|
2020-12-05 20:15:53 +01:00
|
|
|
machine_common_init(model);
|
2021-02-07 17:27:14 +02:00
|
|
|
|
2022-07-23 13:38:10 +02:00
|
|
|
pit_devs[0].set_out_func(pit_devs[0].data, 1, pit_refresh_timer_xt);
|
2021-07-15 20:03:19 +02:00
|
|
|
|
2021-02-11 20:10:43 +01:00
|
|
|
/* On-board FDC cannot be disabled */
|
2020-12-05 20:15:53 +01:00
|
|
|
device_add(&fdc_xt_device);
|
|
|
|
|
|
2021-07-15 20:03:19 +02:00
|
|
|
nmi_init();
|
|
|
|
|
|
2023-02-06 04:12:46 -05:00
|
|
|
video_reset(gfxcard[0]);
|
2021-07-15 20:03:19 +02:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
m19_vid_init(vid);
|
|
|
|
|
device_add_ex(&m19_vid_device, vid);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
2020-12-19 00:06:41 +01:00
|
|
|
device_add(&keyboard_xt_olivetti_device);
|
|
|
|
|
|
2023-10-13 15:34:00 -04:00
|
|
|
pit_set_clock((uint32_t) 14318184.0);
|
2020-12-05 20:15:53 +01:00
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|