mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
Merge pull request #629 from felipesanches/fix_h8_cpu_regnames_string_array_size
[h8 cpu] fix a typo in the array length of the register names string
This commit is contained in:
commit
1a4f73d32f
@ -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",
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user