summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author angelosa <lordkale4@gmail.com>2026-03-25 11:56:11 +0100
committer angelosa <lordkale4@gmail.com>2026-03-25 16:56:56 +0100
commit0bc667ed21969964962a5a449d911d8a9601e292 (patch)
tree6a436d8bb8a1af310c9a80affd23d05fdb7cd307
parentc13ed1630bd3410d4423248584d796eb3d207f38 (diff)
frontend/mame/clifront.cpp: add pattern explainations for -listbios
-rw-r--r--src/devices/bus/kc/d004.cpp2
-rw-r--r--src/frontend/mame/clifront.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/kc/d004.cpp b/src/devices/bus/kc/d004.cpp
index 3d129baaf3e..c82eac0ca41 100644
--- a/src/devices/bus/kc/d004.cpp
+++ b/src/devices/bus/kc/d004.cpp
@@ -467,7 +467,7 @@ void kc_d004_gide_device::gide_w(offs_t offset, uint8_t data)
uint8_t rtc_addr = (offset >> 8) & 0x0f;
// TODO RTC-72421
- logerror("GIDE %s wrire RTC 0x%02x 0x%02x\n", tag(), rtc_addr, data);
+ logerror("GIDE %s write RTC 0x%02x 0x%02x\n", tag(), rtc_addr, data);
}
else
{
diff --git a/src/frontend/mame/clifront.cpp b/src/frontend/mame/clifront.cpp
index 9db3ef61eca..e462de26c7b 100644
--- a/src/frontend/mame/clifront.cpp
+++ b/src/frontend/mame/clifront.cpp
@@ -670,7 +670,7 @@ void cli_frontend::listbios(const std::vector<std::string> &args)
{
if (firstbios)
{
- osd_printf_info("BIOS options for system %s (%s):\n", root.name(), root.shortname());
+ osd_printf_info("BIOS options for system %s (%s -bios X):\n", root.name(), root.shortname());
firstbios = false;
}
osd_printf_info(" %-16s %s\n", bios.get_name(), bios.get_description());
@@ -692,7 +692,7 @@ void cli_frontend::listbios(const std::vector<std::string> &args)
{
if (firstcard)
{
- osd_printf_info("\n BIOS options for device %s (-%s %s):\n", card->name(), slot.device().tag() + 1, card->basetag());
+ osd_printf_info("\n BIOS options for device %s (-%s %s,bios=X):\n", card->name(), slot.device().tag() + 1, card->basetag());
firstcard = false;
}
osd_printf_info(" %-16s %s\n", bios.get_name(), bios.get_description());