From cb8d5e410c0384aab44e970b49e1fabf5aa1e209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Corr=C3=AAa=20da=20Silva=20Sanches?= Date: Sat, 20 Feb 2016 13:15:39 -0200 Subject: [PATCH] [h8 cpu] fix a typo in the array length of the register names string --- src/devices/cpu/h8/h8.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/h8/h8.cpp b/src/devices/cpu/h8/h8.cpp index bc78626b00b..ba8b853e9ec 100644 --- a/src/devices/cpu/h8/h8.cpp +++ b/src/devices/cpu/h8/h8.cpp @@ -281,7 +281,7 @@ void h8_device::disassemble_am(char *&buffer, int am, offs_t pc, const UINT8 *op "e0", "e1", "e2", "e3", "e4", "e5", "e6", "e7", }; - static const char *const r32_names[88] = { + static const char *const r32_names[8] = { "er0", "er1", "er2", "er3", "er4", "er5", "er6", "sp", };