From 33f31108deee65f19343611ccdb30deb5a52fb0d Mon Sep 17 00:00:00 2001 From: hap Date: Thu, 19 Dec 2024 19:58:38 +0100 Subject: i960: fix regression with emul opcode --- src/devices/cpu/i960/i960.cpp | 2 +- src/mame/cxg/dominator.cpp | 2 +- src/mame/shared/namco_c355spr.h | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/devices/cpu/i960/i960.cpp b/src/devices/cpu/i960/i960.cpp index 1038451bc3a..7d31ad031bf 100644 --- a/src/devices/cpu/i960/i960.cpp +++ b/src/devices/cpu/i960/i960.cpp @@ -1538,7 +1538,7 @@ void i960_cpu_device::execute_op(uint32_t opcode) t1 = get_1_ri(opcode); t2 = get_2_ri(opcode); - set_ri64(opcode, mul_32x32(t1, t2)); + set_ri64(opcode, mulu_32x32(t1, t2)); break; case 0x1: // ediv diff --git a/src/mame/cxg/dominator.cpp b/src/mame/cxg/dominator.cpp index 8485e131480..c6414c8a850 100644 --- a/src/mame/cxg/dominator.cpp +++ b/src/mame/cxg/dominator.cpp @@ -328,7 +328,7 @@ ROM_END ROM_START( sgalaxyb ) ROM_REGION( 0x10000, "maincpu", 0 ) - ROM_LOAD("230_1.03", 0x8000, 0x8000, CRC(30d81c4e) SHA1(ab3a9b58db26d87d3e66600b77c9435313b632f2) ) + ROM_LOAD("1988_newcrest_230_1.03", 0x8000, 0x8000, CRC(30d81c4e) SHA1(ab3a9b58db26d87d3e66600b77c9435313b632f2) ) ROM_END diff --git a/src/mame/shared/namco_c355spr.h b/src/mame/shared/namco_c355spr.h index 4baf7e8dfcd..cc261615b57 100644 --- a/src/mame/shared/namco_c355spr.h +++ b/src/mame/shared/namco_c355spr.h @@ -135,7 +135,6 @@ protected: void build_sprite_list(int no); private: - void copybitmap(bitmap_ind16 &dest_bmp, const rectangle &clip, u8 pri); void copybitmap(bitmap_rgb32 &dest_bmp, const rectangle &clip, u8 pri); -- cgit v1.2.3