summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-10-16 15:12:10 -0400
committer AJR <ajrhacker@users.noreply.github.com>2022-10-16 15:12:10 -0400
commitb317facdf532ce49d5a144c9603aa3cccea42cd7 (patch)
treee9327d631e99737f7849c377bdbf6fc6504d73c6 /src/devices/sound
parentc831208d8cb363ecffb278e3b2f4a4218cbb04de (diff)
multipcm: Make address space big-endian
Diffstat (limited to 'src/devices/sound')
-rw-r--r--src/devices/sound/multipcm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/multipcm.h b/src/devices/sound/multipcm.h
index d23008eb598..786b5a3f02c 100644
--- a/src/devices/sound/multipcm.h
+++ b/src/devices/sound/multipcm.h
@@ -15,7 +15,7 @@
class multipcm_device : public device_t,
public device_sound_interface,
- public device_rom_interface<22>
+ public device_rom_interface<22, 0, 0, ENDIANNESS_BIG>
{
public:
multipcm_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);