More sonarlint work

This commit is contained in:
Jasmine Iwanek
2023-06-09 23:46:54 -04:00
parent 0d1d069af4
commit ee695e71f9
218 changed files with 6282 additions and 3845 deletions

View File

@@ -30,6 +30,7 @@
#include <86box/rom.h>
#include <86box/device.h>
#include <86box/video.h>
#include <86box/plat_unused.h>
/* extended CRTC registers */
#define HERCULESPLUS_CRTC_XMODE 20 /* xMode register */
@@ -162,6 +163,9 @@ herculesplus_out(uint16_t port, uint8_t val, void *priv)
else
mem_mapping_set_addr(&dev->mapping, 0xb0000, 0x08000);
return;
default:
break;
}
}
@@ -191,6 +195,9 @@ herculesplus_in(uint16_t port, void *priv)
/* 0x10: Hercules Plus card identity */
ret = (dev->stat & 0xf) | ((dev->stat & 8) << 4) | 0x10;
break;
default:
break;
}
return ret;
@@ -458,6 +465,9 @@ text_line(herculesplus_t *dev, uint16_t ca)
case 5: /* 48k RAMfont */
draw_char_ram48(dev, x, chr, attr);
break;
default:
break;
}
++dev->ma;
@@ -641,7 +651,7 @@ herculesplus_poll(void *priv)
}
static void *
herculesplus_init(const device_t *info)
herculesplus_init(UNUSED(const device_t *info))
{
herculesplus_t *dev;