summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/busicom.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2021-02-14 11:05:57 -0500
committer AJR <ajrhacker@users.noreply.github.com>2021-02-14 11:05:57 -0500
commitbc0146c2038c46f789a246d5616afd7c425157f3 (patch)
treeb4d39194034b4c6e56ccd4035d25636034be43ca /src/mame/drivers/busicom.cpp
parent91310bcdeb7ab0ff661738b212017bf836f4e8ad (diff)
Eliminate ARRAY_LENGTH template in favor of C++17's std::size
* osdcomm.h: Move definition of EQUIVALENT_ARRAY to coretmpl.h * sharc.cpp, gt64xxx.cpp, ym2413.cpp, gb_lcd.cpp, snes_ppu.cpp: Use STRUCT_MEMBER for save state registration * gio/newport.cpp, megadrive/svp.cpp, nes_ctrl/bcbattle.cpp, arm7.cpp, tms9995.cpp, pckeybrd.cpp, sa1110.cpp, sa1111.cpp, jangou_blitter.cpp, vic4567.cpp: Use std::fill(_n) instead of memset * emucore.h: Remove obsolete typedef
Diffstat (limited to 'src/mame/drivers/busicom.cpp')
-rw-r--r--src/mame/drivers/busicom.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/busicom.cpp b/src/mame/drivers/busicom.cpp
index b0311905988..ceeac8df9f8 100644
--- a/src/mame/drivers/busicom.cpp
+++ b/src/mame/drivers/busicom.cpp
@@ -81,9 +81,9 @@ void busicom_state::printer_w(uint8_t data)
if (BIT(data, 3))
{
- for (u8 j = 0; j < (ARRAY_LENGTH(m_printer_line) - 1); j++)
+ for (u8 j = 0; j < (std::size(m_printer_line) - 1); j++)
std::copy(std::begin(m_printer_line[j + 1]), std::end(m_printer_line[j + 1]), std::begin(m_printer_line[j]));
- std::copy_n(&m_printer_line_color[1], ARRAY_LENGTH(m_printer_line_color) - 1, &m_printer_line_color[0]);
+ std::copy_n(&m_printer_line_color[1], std::size(m_printer_line_color) - 1, &m_printer_line_color[0]);
std::fill(std::begin(m_printer_line[10]), std::end(m_printer_line[10]), 0);
m_printer_line_color[10] = 0;
@@ -226,7 +226,7 @@ void busicom_state::machine_reset()
m_keyboard_shifter = 0;
m_printer_shifter = 0;
- for (int i = 0; i < ARRAY_LENGTH(m_printer_line); i++)
+ for (int i = 0; i < std::size(m_printer_line); i++)
std::fill(std::begin(m_printer_line[i]), std::end(m_printer_line[i]), 0);
std::fill(std::begin(m_printer_line_color), std::end(m_printer_line_color), 0);
}