summaryrefslogtreecommitdiffstats
path: root/src/frontend/mame/luaengine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/luaengine.cpp')
-rw-r--r--src/frontend/mame/luaengine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/mame/luaengine.cpp b/src/frontend/mame/luaengine.cpp
index 274125b7775..6de0335fa77 100644
--- a/src/frontend/mame/luaengine.cpp
+++ b/src/frontend/mame/luaengine.cpp
@@ -428,9 +428,9 @@ T lua_engine::region_read(memory_region &region, offs_t address)
continue;
mem_content <<= 8;
if(region.endianness() == ENDIANNESS_BIG)
- mem_content |= region.u8((BYTE8_XOR_BE(addr) & lowmask) | (addr & ~lowmask));
+ mem_content |= region.as_u8((BYTE8_XOR_BE(addr) & lowmask) | (addr & ~lowmask));
else
- mem_content |= region.u8((BYTE8_XOR_LE(addr) & lowmask) | (addr & ~lowmask));
+ mem_content |= region.as_u8((BYTE8_XOR_LE(addr) & lowmask) | (addr & ~lowmask));
}
return mem_content;
/commit/src/mame/drivers/mainevt.cpp?id=58c420eeb73edc997d0e6ac3cc28389979a824fe'>Eliminate some dumb nmi_line_pulse usage (nw) AJR2019-10-311-6/+6 * Make devdelegate more like devcb for configuration. This is a Vas Crabb2019-10-261-4/+4 * k052109: Use callback to generate IRQ for most drivers (nw) AJR2019-08-301-9/+7 * Merge pull request #4936 from cam900/k052109_args R. Belmont2019-04-291-3/+3 |\ | * k052109.cpp : Updates cam9002019-04-271-3/+3 * | k051960.cpp : Simplify handlers cam9002019-04-271-4/+4 |/ * 68000: Rework interrupt handling [O. Galibert] Olivier Galibert2019-04-051-1/+1 * Start cleaning up palette configuration: Vas Crabb2018-12-291-6/+2 * -devices/sound/aica, flt_rc, ics2115, k007232, k053260, sp0250, upd7759: Remo... mooglyguy2018-12-201-52/+52 * src\mame: misc MCFG removal (nw) Ivan Vangelista2018-12-031-1/+1 * src/mame/video: switched various devices to devcb3 and removed MCFG macros (nw) Ivan Vangelista2018-11-211-14/+14 * ym2151: removed MCFG macros (nw) Ivan Vangelista2018-11-181-3/+1 * gen_latch: removed MCFG macros (nw) Ivan Vangelista2018-11-151-2/+2 * Acceptance testing failed: marked Devastators and Jongputer with proper flags... angelosa2018-09-191-5/+5 * mainevt.cpp: Document The Main Event & Devastators run on the same hardware, ... braintro2018-08-281-11/+15 * srcclean and manual fixup (nw) Vas Crabb2018-08-261-12/+12 * upd7759: Converted to use device_rom_interface and added md input for selecti... smf-2018-08-121-1/+1 * mainevt.cpp: added proper screen parameters [Corrado Tomaselli] angelosa2018-08-041-10/+19 * new working clone angelosa2018-08-041-7/+32 * Remove emupal.h from emu.h (nw) AJR2018-06-131-0/+1 * as if millions of this pointers suddenly cried out in terror, and were sudden... Vas Crabb2018-06-081-14/+14 * use plural names for output finders when there are multiple outputs (#3595) wilbertpol2018-05-271-5/+5 * Replace set_led_value and set_lamp_value with output_finders. [Wilbe… (#3592) wilbertpol2018-05-201-4/+5 * diexec: Interrupt API changes (nw) AJR2018-05-181-1/+1 * Removed DRIVER_INIT-related macros, made driver init entry in GAME/COMP/CONS ... MooglyGuy2018-05-131-8/+8 * dsp16: fix condition mask in disassembler (nw) Vas Crabb2018-05-091-2/+2 * (nw) misc follow-up Vas Crabb2018-05-061-1/+1 * Streamline machine configuration macros - everyone's a device edition. Vas Crabb2018-05-061-17/+17 * mainevt.cpp: Derive clocks from XTAL values (nw) AJR2018-03-251-11/+11 * Address maps macros removal, pass 1 [O. Galibert] Olivier Galibert2018-03-141-69/+73 * API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-4/+4 * API change: Memory maps are now "last entry wins" [O. Galibert] Olivier Galibert2018-01-311-5/+5 * memory: Deambiguate handlers, also a hint of things to come (nw) Olivier Galibert2018-01-191-2/+2 * API Change: Machine configs are now a method of the owner class, and the prot... Olivier Galibert2018-01-171-2/+2 * Ch-ch-ch-ch-ch-checkpoint... (nw) Olivier Galibert2018-01-041-2/+2 * mainevt.cpp: reverse button1 and button2 as per service mode (nw) angelosa2017-11-121-4/+4 * Move static data out of devices into the device types. This is a significant... Vas Crabb2017-05-141-10/+10 * Self-registering devices prep: Vas Crabb2017-02-271-2/+5 * ym2151: Isolate, objectify, integrate [O. Galibert] Olivier Galibert2016-06-291-1/+1 * more gen_latch-ification (nw) Ivan Vangelista2016-06-011-4/+9 * make output be part of driver_device (nw) Miodrag Milanovic2016-01-101-4/+4 * modernize output_manager (nw) Miodrag Milanovic2016-01-101-4/+4 * modernized bookkeeping manager (nw) Miodrag Milanovic2016-01-101-2/+2