Merge pull request #5685 from starfrost013/bugfixes
Video Refactor Part 5(gum): MDA Colour support
This commit is contained in:
@@ -61,42 +61,63 @@ typedef enum mda_crtc_registers_e
|
||||
typedef enum mda_mode_flags_e
|
||||
{
|
||||
MDA_MODE_HIGHRES = 1 << 0, // MUST be enabled for sane operation
|
||||
MDA_MODE_BLACKANDWHITE = 1 << 1, // UNUSED in most cases. Not present on Hercules
|
||||
MDA_MODE_BW = 1 << 1, // UNUSED in most cases. Not present on Hercules
|
||||
MDA_MODE_VIDEO_ENABLE = 1 << 3,
|
||||
MDA_MODE_BLINK = 1 << 5,
|
||||
} mda_mode_flags;
|
||||
|
||||
typedef enum mda_colors_e
|
||||
{
|
||||
MDA_COLOR_BLACK = 0,
|
||||
MDA_COLOR_BLUE = 1,
|
||||
MDA_COLOR_GREEN = 2,
|
||||
MDA_COLOR_CYAN = 3,
|
||||
MDA_COLOR_RED = 4,
|
||||
MDA_COLOR_MAGENTA = 5,
|
||||
MDA_COLOR_BROWN = 6,
|
||||
MDA_COLOR_WHITE = 7,
|
||||
MDA_COLOR_GREY = 8,
|
||||
MDA_COLOR_BRIGHT_BLUE = 9,
|
||||
MDA_COLOR_BRIGHT_GREEN = 10,
|
||||
MDA_COLOR_BRIGHT_CYAN = 11,
|
||||
MDA_COLOR_BRIGHT_RED = 12,
|
||||
MDA_COLOR_BRIGHT_MAGENTA = 13,
|
||||
MDA_COLOR_BRIGHT_YELLOW = 14,
|
||||
MDA_COLOR_BRIGHT_WHITE = 15,
|
||||
} mda_colors;
|
||||
|
||||
typedef struct mda_t {
|
||||
mem_mapping_t mapping;
|
||||
|
||||
uint8_t crtc[MDA_CRTC_NUM_REGISTERS];
|
||||
int crtcreg;
|
||||
uint8_t crtc[MDA_CRTC_NUM_REGISTERS];
|
||||
int32_t crtcreg;
|
||||
|
||||
uint8_t mode;
|
||||
uint8_t status;
|
||||
uint8_t mode;
|
||||
uint8_t status;
|
||||
|
||||
uint64_t dispontime;
|
||||
uint64_t dispofftime;
|
||||
pc_timer_t timer;
|
||||
uint64_t dispontime;
|
||||
uint64_t dispofftime;
|
||||
pc_timer_t timer;
|
||||
|
||||
int firstline;
|
||||
int lastline;
|
||||
int32_t firstline;
|
||||
int32_t lastline;
|
||||
|
||||
int fontbase;
|
||||
int linepos;
|
||||
int displine;
|
||||
int vc;
|
||||
int scanline;
|
||||
uint16_t memaddr;
|
||||
uint16_t memaddr_backup;
|
||||
int cursorvisible;
|
||||
int cursoron;
|
||||
int dispon;
|
||||
int blink;
|
||||
int vsynctime;
|
||||
int vadj;
|
||||
int monitor_index;
|
||||
int prev_monitor_index;
|
||||
int32_t fontbase;
|
||||
int32_t linepos;
|
||||
int32_t displine;
|
||||
int32_t vc;
|
||||
int32_t scanline;
|
||||
uint16_t memaddr;
|
||||
uint16_t memaddr_backup;
|
||||
int32_t cursorvisible;
|
||||
int32_t cursoron;
|
||||
int32_t dispon;
|
||||
int32_t blink;
|
||||
int32_t vsynctime;
|
||||
int32_t vadj;
|
||||
int32_t monitor_index;
|
||||
int32_t prev_monitor_index;
|
||||
int32_t monitor_type; // Used for MDA Colour support (REV0 u64)
|
||||
|
||||
uint8_t *vram;
|
||||
} mda_t;
|
||||
|
||||
@@ -187,6 +187,10 @@ extern bitmap_t *buffer32;
|
||||
#define efscrnsz_y (monitors[monitor_index_global].mon_efscrnsz_y)
|
||||
#define unscaled_size_x (monitors[monitor_index_global].mon_unscaled_size_x)
|
||||
#define unscaled_size_y (monitors[monitor_index_global].mon_unscaled_size_y)
|
||||
|
||||
#define CGAPAL_CGA_START 16 // Where the 16-color cga text/composite starts
|
||||
|
||||
|
||||
extern PALETTE cgapal;
|
||||
extern PALETTE cgapal_mono[6];
|
||||
#if 0
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
*
|
||||
* This file is part of the 86Box distribution.
|
||||
*
|
||||
* MDA emulation.
|
||||
* IBM Monochrome Display and Printer Adapter emulation.
|
||||
*
|
||||
*
|
||||
*
|
||||
@@ -18,6 +18,7 @@
|
||||
* Copyright 2016-2025 Miran Grca.
|
||||
* Copyright 2025 starfrost / Connor Hyde
|
||||
*/
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
@@ -35,6 +36,16 @@
|
||||
#include <86box/vid_mda.h>
|
||||
#include <86box/plat_unused.h>
|
||||
|
||||
// Enumerates MDA monitor types
|
||||
enum mda_monitor_type_e {
|
||||
MDA_MONITOR_TYPE_DEFAULT = 0, // Default MDA monitor type.
|
||||
MDA_MONITOR_TYPE_GREEN = 1, // Green phosphor
|
||||
MDA_MONITOR_TYPE_AMBER = 2, // Amber phosphor
|
||||
MDA_MONITOR_TYPE_GRAY = 3, // Gray phosphor
|
||||
MDA_MONITOR_TYPE_RGBI = 4, // RGBI colour monitor with modified rev1 or rev0 MDA card for colour support
|
||||
} mda_monitor_type;
|
||||
|
||||
// [attr][blink][fg]
|
||||
static int mda_attr_to_color_table[256][2][2];
|
||||
|
||||
static video_timings_t timing_mda = { .type = VIDEO_ISA, .write_b = 8, .write_w = 16, .write_l = 32, .read_b = 8, .read_w = 16, .read_l = 32 };
|
||||
@@ -46,12 +57,11 @@ mda_out(uint16_t addr, uint8_t val, void *priv)
|
||||
{
|
||||
mda_t *mda = (mda_t *) priv;
|
||||
|
||||
if (addr < MDA_REGISTER_START
|
||||
|| addr > MDA_REGISTER_CRT_STATUS) // Maintain old behaviour for printer registers, just in case
|
||||
if (addr < MDA_REGISTER_START
|
||||
|| addr > MDA_REGISTER_CRT_STATUS) // Maintain old behaviour for printer registers, just in case
|
||||
return;
|
||||
|
||||
switch (addr)
|
||||
{
|
||||
switch (addr) {
|
||||
case MDA_REGISTER_MODE_CONTROL:
|
||||
mda->mode = val;
|
||||
return;
|
||||
@@ -61,20 +71,17 @@ mda_out(uint16_t addr, uint8_t val, void *priv)
|
||||
|
||||
// addr & 1 == 1 = MDA_REGISTER_CRTC_DATA
|
||||
// otherwise MDA_REGISTER_CRTC_INDEX
|
||||
if (addr & 1)
|
||||
{
|
||||
if (addr & 1) {
|
||||
mda->crtc[mda->crtcreg] = val;
|
||||
if (mda->crtc[MDA_CRTC_CURSOR_START] == 6
|
||||
if (mda->crtc[MDA_CRTC_CURSOR_START] == 6
|
||||
&& mda->crtc[MDA_CRTC_CURSOR_END] == 7) /*Fix for Generic Turbo XT BIOS, which sets up cursor registers wrong*/
|
||||
{
|
||||
mda->crtc[MDA_CRTC_CURSOR_START] = 0xb;
|
||||
mda->crtc[MDA_CRTC_CURSOR_END] = 0xc;
|
||||
mda->crtc[MDA_CRTC_CURSOR_END] = 0xc;
|
||||
}
|
||||
mda_recalctimings(mda);
|
||||
}
|
||||
else
|
||||
} else
|
||||
mda->crtcreg = val & 31;
|
||||
|
||||
}
|
||||
|
||||
uint8_t
|
||||
@@ -82,19 +89,18 @@ mda_in(uint16_t addr, void *priv)
|
||||
{
|
||||
const mda_t *mda = (mda_t *) priv;
|
||||
|
||||
switch (addr)
|
||||
{
|
||||
switch (addr) {
|
||||
case MDA_REGISTER_CRT_STATUS:
|
||||
return mda->status | 0xF0;
|
||||
default:
|
||||
if (addr < MDA_REGISTER_START
|
||||
|| addr > MDA_REGISTER_CRT_STATUS) // Maintain old behaviour for printer registers, just in case
|
||||
if (addr < MDA_REGISTER_START
|
||||
|| addr > MDA_REGISTER_CRT_STATUS) // Maintain old behaviour for printer registers, just in case
|
||||
return 0xFF;
|
||||
|
||||
// MDA_REGISTER_CRTC_DATA
|
||||
if (addr & 1)
|
||||
return mda->crtc[mda->crtcreg];
|
||||
else
|
||||
else
|
||||
return mda->crtcreg;
|
||||
|
||||
break;
|
||||
@@ -136,51 +142,133 @@ mda_recalctimings(mda_t *mda)
|
||||
void
|
||||
mda_poll(void *priv)
|
||||
{
|
||||
mda_t *mda = (mda_t *) priv;
|
||||
uint16_t cursoraddr = (mda->crtc[MDA_CRTC_CURSOR_ADDR_LOW] | (mda->crtc[MDA_CRTC_CURSOR_ADDR_HIGH] << 8)) & 0x3fff;
|
||||
int drawcursor;
|
||||
int x;
|
||||
int c;
|
||||
int oldvc;
|
||||
mda_t *mda = (mda_t *) priv;
|
||||
uint16_t cursoraddr = (mda->crtc[MDA_CRTC_CURSOR_ADDR_LOW] | (mda->crtc[MDA_CRTC_CURSOR_ADDR_HIGH] << 8)) & 0x3fff;
|
||||
bool drawcursor;
|
||||
int32_t oldvc;
|
||||
uint8_t chr;
|
||||
uint8_t attr;
|
||||
int scanline_old;
|
||||
int blink;
|
||||
int32_t scanline_old;
|
||||
int32_t blink;
|
||||
|
||||
VIDEO_MONITOR_PROLOGUE()
|
||||
|
||||
if (!mda->linepos) {
|
||||
timer_advance_u64(&mda->timer, mda->dispofftime);
|
||||
mda->status |= 1;
|
||||
mda->linepos = 1;
|
||||
scanline_old = mda->scanline;
|
||||
scanline_old = mda->scanline;
|
||||
if ((mda->crtc[MDA_CRTC_INTERLACE] & 3) == 3)
|
||||
mda->scanline = (mda->scanline << 1) & 7;
|
||||
|
||||
if (mda->dispon) {
|
||||
if (mda->displine < mda->firstline) {
|
||||
mda->firstline = mda->displine;
|
||||
video_wait_for_buffer();
|
||||
}
|
||||
mda->lastline = mda->displine;
|
||||
for (x = 0; x < mda->crtc[MDA_CRTC_HDISP]; x++) {
|
||||
|
||||
for (uint32_t x = 0; x < mda->crtc[MDA_CRTC_HDISP]; x++) {
|
||||
chr = mda->vram[(mda->memaddr << 1) & 0xfff];
|
||||
attr = mda->vram[((mda->memaddr << 1) + 1) & 0xfff];
|
||||
drawcursor = ((mda->memaddr == cursoraddr) && mda->cursorvisible && mda->cursoron);
|
||||
blink = ((mda->blink & 16) && (mda->mode & MDA_MODE_BLINK) && (attr & 0x80) && !drawcursor);
|
||||
if (mda->scanline == 12 && ((attr & 7) == 1)) {
|
||||
for (c = 0; c < 9; c++)
|
||||
buffer32->line[mda->displine][(x * 9) + c] = mda_attr_to_color_table[attr][blink][1];
|
||||
} else {
|
||||
for (c = 0; c < 8; c++)
|
||||
buffer32->line[mda->displine][(x * 9) + c] = mda_attr_to_color_table[attr][blink][(fontdatm[chr + mda->fontbase][mda->scanline] & (1 << (c ^ 7))) ? 1 : 0];
|
||||
if ((chr & ~0x1f) == 0xc0)
|
||||
buffer32->line[mda->displine][(x * 9) + 8] = mda_attr_to_color_table[attr][blink][fontdatm[chr + mda->fontbase][mda->scanline] & 1];
|
||||
else
|
||||
buffer32->line[mda->displine][(x * 9) + 8] = mda_attr_to_color_table[attr][blink][0];
|
||||
|
||||
// Colours that will be used
|
||||
int32_t color_bg = 0, color_fg = 0;
|
||||
|
||||
// If we are using an RGBI monitor allow colour
|
||||
if (mda->monitor_type == MDA_MONITOR_TYPE_RGBI
|
||||
&& !(mda->mode & MDA_MODE_BW)) {
|
||||
color_bg = (attr >> 4) & 0x0F;
|
||||
color_fg = (attr & 0x0F);
|
||||
|
||||
// turn off bright bg colours in blink mode
|
||||
if ((mda->mode & MDA_MODE_BLINK)
|
||||
&& (color_bg & 0x8))
|
||||
color_bg & ~(0x8);
|
||||
|
||||
// black-on-non black or white colours forced to white
|
||||
// grey-on-colours forced to bright white
|
||||
|
||||
bool special_treatment = (color_bg != 0 && color_bg != 7);
|
||||
|
||||
if (color_fg == MDA_COLOR_GREY
|
||||
&& special_treatment)
|
||||
color_fg = MDA_COLOR_BRIGHT_WHITE;
|
||||
|
||||
if (color_fg == 0
|
||||
&& special_treatment)
|
||||
color_fg = MDA_COLOR_GREY;
|
||||
|
||||
// gray is black
|
||||
if (color_fg == MDA_COLOR_GREY
|
||||
&& (color_bg == MDA_COLOR_GREY || color_bg == MDA_COLOR_BLACK))
|
||||
color_fg = MDA_COLOR_BLACK;
|
||||
}
|
||||
|
||||
if (mda->scanline == 12
|
||||
&& ((attr & 7) == 1)) { // underline
|
||||
for (uint32_t column = 0; column < 9; column++) {
|
||||
if (mda->monitor_type == MDA_MONITOR_TYPE_RGBI
|
||||
&& !(mda->mode & MDA_MODE_BW)) {
|
||||
buffer32->line[mda->displine][(x * 9) + column] = CGAPAL_CGA_START + color_fg;
|
||||
} else
|
||||
buffer32->line[mda->displine][(x * 9) + column] = mda_attr_to_color_table[attr][blink][1];
|
||||
}
|
||||
} else { // character
|
||||
for (uint32_t column = 0; column < 8; column++) {
|
||||
// bg=0, fg=1
|
||||
bool is_fg = (fontdatm[chr + mda->fontbase][mda->scanline] & (1 << (column ^ 7))) ? 1 : 0;
|
||||
|
||||
uint32_t font_char = mda_attr_to_color_table[attr][blink][is_fg];
|
||||
|
||||
if (mda->monitor_type == MDA_MONITOR_TYPE_RGBI
|
||||
&& !(mda->mode & MDA_MODE_BW)) {
|
||||
if (!is_fg)
|
||||
font_char = CGAPAL_CGA_START + color_bg;
|
||||
else
|
||||
font_char = CGAPAL_CGA_START + color_fg;
|
||||
}
|
||||
|
||||
buffer32->line[mda->displine][(x * 9) + column] = font_char;
|
||||
}
|
||||
|
||||
// these characters (C0-DF) have their background extended to their 9th column
|
||||
if ((chr & ~0x1f) == 0xc0) {
|
||||
bool is_fg = fontdatm[chr + mda->fontbase][mda->scanline] & 1;
|
||||
uint32_t final_result = mda_attr_to_color_table[attr][blink][is_fg];
|
||||
|
||||
if (mda->monitor_type == MDA_MONITOR_TYPE_RGBI
|
||||
&& !(mda->mode & MDA_MODE_BW)) {
|
||||
if (!is_fg)
|
||||
final_result = CGAPAL_CGA_START + color_bg;
|
||||
else
|
||||
final_result = CGAPAL_CGA_START + color_fg;
|
||||
}
|
||||
|
||||
buffer32->line[mda->displine][(x * 9) + 8] = final_result;
|
||||
|
||||
} else {
|
||||
if (mda->monitor_type == MDA_MONITOR_TYPE_RGBI
|
||||
&& !(mda->mode & MDA_MODE_BW)) {
|
||||
buffer32->line[mda->displine][(x * 9) + 8] = CGAPAL_CGA_START + color_bg;
|
||||
|
||||
} else
|
||||
buffer32->line[mda->displine][(x * 9) + 8] = mda_attr_to_color_table[attr][blink][0];
|
||||
}
|
||||
}
|
||||
|
||||
mda->memaddr++;
|
||||
|
||||
if (drawcursor) {
|
||||
for (c = 0; c < 9; c++)
|
||||
buffer32->line[mda->displine][(x * 9) + c] ^= mda_attr_to_color_table[attr][0][1];
|
||||
for (uint32_t column = 0; column < 9; column++) {
|
||||
if (mda->monitor_type == MDA_MONITOR_TYPE_RGBI
|
||||
&& !(mda->mode & MDA_MODE_BW)) {
|
||||
buffer32->line[mda->displine][(x * 9) + column] ^= CGAPAL_CGA_START + color_fg;
|
||||
} else
|
||||
buffer32->line[mda->displine][(x * 9) + column] ^= mda_attr_to_color_table[attr][0][1];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -198,33 +286,35 @@ mda_poll(void *priv)
|
||||
if (mda->dispon)
|
||||
mda->status &= ~1;
|
||||
mda->linepos = 0;
|
||||
|
||||
if (mda->vsynctime) {
|
||||
mda->vsynctime--;
|
||||
if (!mda->vsynctime) {
|
||||
mda->status &= ~8;
|
||||
}
|
||||
}
|
||||
if (mda->scanline == (mda->crtc[MDA_CRTC_CURSOR_END] & 31)
|
||||
|| ((mda->crtc[MDA_CRTC_INTERLACE] & 3) == 3
|
||||
&& mda->scanline == ((mda->crtc[MDA_CRTC_CURSOR_END] & 31) >> 1))) {
|
||||
mda->cursorvisible = 0;
|
||||
if (mda->scanline == (mda->crtc[MDA_CRTC_CURSOR_END] & 31)
|
||||
|| ((mda->crtc[MDA_CRTC_INTERLACE] & 3) == 3
|
||||
&& mda->scanline == ((mda->crtc[MDA_CRTC_CURSOR_END] & 31) >> 1))) {
|
||||
mda->cursorvisible = 0;
|
||||
}
|
||||
|
||||
if (mda->vadj) {
|
||||
mda->scanline++;
|
||||
mda->scanline &= 31;
|
||||
mda->memaddr = mda->memaddr_backup;
|
||||
mda->vadj--;
|
||||
if (!mda->vadj) {
|
||||
mda->dispon = 1;
|
||||
mda->dispon = 1;
|
||||
mda->memaddr = mda->memaddr_backup = (mda->crtc[MDA_CRTC_START_ADDR_LOW] | (mda->crtc[MDA_CRTC_START_ADDR_HIGH] << 8)) & 0x3fff;
|
||||
mda->scanline = 0;
|
||||
mda->scanline = 0;
|
||||
}
|
||||
} else if (mda->scanline == mda->crtc[MDA_CRTC_MAX_SCANLINE_ADDR]
|
||||
|| ((mda->crtc[MDA_CRTC_INTERLACE] & 3) == 3
|
||||
&& mda->scanline == (mda->crtc[MDA_CRTC_MAX_SCANLINE_ADDR] >> 1))) {
|
||||
|| ((mda->crtc[MDA_CRTC_INTERLACE] & 3) == 3
|
||||
&& mda->scanline == (mda->crtc[MDA_CRTC_MAX_SCANLINE_ADDR] >> 1))) {
|
||||
mda->memaddr_backup = mda->memaddr;
|
||||
mda->scanline = 0;
|
||||
oldvc = mda->vc;
|
||||
mda->scanline = 0;
|
||||
oldvc = mda->vc;
|
||||
mda->vc++;
|
||||
mda->vc &= 127;
|
||||
if (mda->vc == mda->crtc[MDA_CRTC_VDISP])
|
||||
@@ -247,7 +337,7 @@ mda_poll(void *priv)
|
||||
mda->displine = 0;
|
||||
mda->vsynctime = 16;
|
||||
if (mda->crtc[MDA_CRTC_VSYNC]) {
|
||||
x = mda->crtc[MDA_CRTC_HDISP] * 9;
|
||||
uint32_t x = mda->crtc[MDA_CRTC_HDISP] * 9;
|
||||
mda->lastline++;
|
||||
if ((x != xsize) || ((mda->lastline - mda->firstline) != ysize) || video_force_resize_get()) {
|
||||
xsize = x;
|
||||
@@ -277,9 +367,9 @@ mda_poll(void *priv)
|
||||
mda->memaddr = mda->memaddr_backup;
|
||||
}
|
||||
|
||||
if (mda->scanline == (mda->crtc[MDA_CRTC_CURSOR_START] & 31)
|
||||
|| ((mda->crtc[MDA_CRTC_INTERLACE] & 3) == 3
|
||||
&& mda->scanline == ((mda->crtc[MDA_CRTC_CURSOR_START] & 31) >> 1))) {
|
||||
if (mda->scanline == (mda->crtc[MDA_CRTC_CURSOR_START] & 31)
|
||||
|| ((mda->crtc[MDA_CRTC_INTERLACE] & 3) == 3
|
||||
&& mda->scanline == ((mda->crtc[MDA_CRTC_CURSOR_START] & 31) >> 1))) {
|
||||
mda->cursorvisible = 1;
|
||||
}
|
||||
}
|
||||
@@ -289,21 +379,22 @@ mda_poll(void *priv)
|
||||
void
|
||||
mda_init(mda_t *mda)
|
||||
{
|
||||
for (uint16_t c = 0; c < 256; c++) {
|
||||
mda_attr_to_color_table[c][0][0] = mda_attr_to_color_table[c][1][0] = mda_attr_to_color_table[c][1][1] = 16;
|
||||
if (c & 8)
|
||||
mda_attr_to_color_table[c][0][1] = 15 + 16;
|
||||
|
||||
for (uint16_t attr = 0; attr < 256; attr++) {
|
||||
mda_attr_to_color_table[attr][0][0] = mda_attr_to_color_table[attr][1][0] = mda_attr_to_color_table[attr][1][1] = 16;
|
||||
if (attr & 8)
|
||||
mda_attr_to_color_table[attr][0][1] = 15 + 16;
|
||||
else
|
||||
mda_attr_to_color_table[c][0][1] = 7 + 16;
|
||||
mda_attr_to_color_table[attr][0][1] = 7 + 16;
|
||||
}
|
||||
mda_attr_to_color_table[0x70][0][1] = 16;
|
||||
mda_attr_to_color_table[0x70][0][0] = mda_attr_to_color_table[0x70][1][0] = mda_attr_to_color_table[0x70][1][1] = 16 + 15;
|
||||
mda_attr_to_color_table[0xF0][0][1] = 16;
|
||||
mda_attr_to_color_table[0xF0][0][0] = mda_attr_to_color_table[0xF0][1][0] = mda_attr_to_color_table[0xF0][1][1] = 16 + 15;
|
||||
mda_attr_to_color_table[0x78][0][1] = 16 + 7;
|
||||
mda_attr_to_color_table[0x78][0][0] = mda_attr_to_color_table[0x78][1][0] = mda_attr_to_color_table[0x78][1][1] = 16 + 15;
|
||||
mda_attr_to_color_table[0xF8][0][1] = 16 + 7;
|
||||
mda_attr_to_color_table[0xF8][0][0] = mda_attr_to_color_table[0xF8][1][0] = mda_attr_to_color_table[0xF8][1][1] = 16 + 15;
|
||||
mda_attr_to_color_table[0x70][0][0] = mda_attr_to_color_table[0x70][1][0] = mda_attr_to_color_table[0x70][1][1] = CGAPAL_CGA_START + 15;
|
||||
mda_attr_to_color_table[0xF0][0][1] = 16;
|
||||
mda_attr_to_color_table[0xF0][0][0] = mda_attr_to_color_table[0xF0][1][0] = mda_attr_to_color_table[0xF0][1][1] = CGAPAL_CGA_START + 15;
|
||||
mda_attr_to_color_table[0x78][0][1] = CGAPAL_CGA_START + 7;
|
||||
mda_attr_to_color_table[0x78][0][0] = mda_attr_to_color_table[0x78][1][0] = mda_attr_to_color_table[0x78][1][1] = CGAPAL_CGA_START + 15;
|
||||
mda_attr_to_color_table[0xF8][0][1] = CGAPAL_CGA_START + 7;
|
||||
mda_attr_to_color_table[0xF8][0][0] = mda_attr_to_color_table[0xF8][1][0] = mda_attr_to_color_table[0xF8][1][1] = CGAPAL_CGA_START + 15;
|
||||
mda_attr_to_color_table[0x00][0][1] = mda_attr_to_color_table[0x00][1][1] = 16;
|
||||
mda_attr_to_color_table[0x08][0][1] = mda_attr_to_color_table[0x08][1][1] = 16;
|
||||
mda_attr_to_color_table[0x80][0][1] = mda_attr_to_color_table[0x80][1][1] = 16;
|
||||
@@ -312,7 +403,8 @@ mda_init(mda_t *mda)
|
||||
overscan_x = overscan_y = 0;
|
||||
mda->monitor_index = monitor_index_global;
|
||||
|
||||
cga_palette = device_get_config_int("rgb_type") << 1;
|
||||
mda->monitor_type = device_get_config_int("rgb_type");
|
||||
cga_palette = mda->monitor_type << 1;
|
||||
if (cga_palette > 6) {
|
||||
cga_palette = 0;
|
||||
}
|
||||
@@ -330,7 +422,7 @@ mda_standalone_init(UNUSED(const device_t *info))
|
||||
|
||||
mda->vram = malloc(0x1000);
|
||||
|
||||
switch(device_get_config_int("font")) {
|
||||
switch (device_get_config_int("font")) {
|
||||
case 0:
|
||||
loadfont(FONT_IBM_MDA_437_PATH, 0);
|
||||
break;
|
||||
@@ -367,7 +459,7 @@ mda_standalone_init(UNUSED(const device_t *info))
|
||||
void
|
||||
mda_setcol(int chr, int blink, int fg, uint8_t cga_ink)
|
||||
{
|
||||
mda_attr_to_color_table[chr][blink][fg] = 16 + cga_ink;
|
||||
mda_attr_to_color_table[chr][blink][fg] = CGAPAL_CGA_START + cga_ink;
|
||||
}
|
||||
|
||||
void
|
||||
@@ -388,7 +480,7 @@ mda_speed_changed(void *priv)
|
||||
}
|
||||
|
||||
static const device_config_t mda_config[] = {
|
||||
// clang-format off
|
||||
// clang-format off
|
||||
{
|
||||
.name = "rgb_type",
|
||||
.description = "Display type",
|
||||
@@ -397,12 +489,14 @@ static const device_config_t mda_config[] = {
|
||||
.default_int = 0,
|
||||
.file_filter = NULL,
|
||||
.spinner = { 0 },
|
||||
.selection = {
|
||||
{ .description = "Default", .value = 0 },
|
||||
{ .description = "Green", .value = 1 },
|
||||
{ .description = "Amber", .value = 2 },
|
||||
{ .description = "Gray", .value = 3 },
|
||||
{ .description = "" }
|
||||
.selection =
|
||||
{
|
||||
{ .description = "Default", .value = MDA_MONITOR_TYPE_DEFAULT },
|
||||
{ .description = "Green", .value = MDA_MONITOR_TYPE_GREEN },
|
||||
{ .description = "Amber", .value = MDA_MONITOR_TYPE_AMBER },
|
||||
{ .description = "Gray", .value = MDA_MONITOR_TYPE_GRAY },
|
||||
{ .description = "Generic RGBI color monitor", .value = MDA_MONITOR_TYPE_RGBI },
|
||||
{ .description = "" }
|
||||
},
|
||||
.bios = { { 0 } }
|
||||
},
|
||||
@@ -414,17 +508,18 @@ static const device_config_t mda_config[] = {
|
||||
.default_int = 0,
|
||||
.file_filter = NULL,
|
||||
.spinner = { 0 },
|
||||
.selection = {
|
||||
{ .description = "US (CP 437)", .value = 0 },
|
||||
.selection =
|
||||
{
|
||||
{ .description = "US (CP 437)", .value = 0 },
|
||||
{ .description = "IBM Nordic (CP 437-Nordic)", .value = 1 },
|
||||
{ .description = "Czech Kamenicky (CP 895) #1", .value = 2 },
|
||||
{ .description = "Czech Kamenicky (CP 895) #2", .value = 3 },
|
||||
{ .description = "" }
|
||||
{ .description = "" }
|
||||
},
|
||||
.bios = { { 0 } }
|
||||
},
|
||||
{ .name = "", .description = "", .type = CONFIG_END }
|
||||
// clang-format on
|
||||
// clang-format on
|
||||
};
|
||||
|
||||
const device_t mda_device = {
|
||||
|
||||
Reference in New Issue
Block a user