MAME:Plugins and Scripts: Difference between revisions

From SpecNext Wiki
Jump to: navigation, search
No edit summary
Line 22: Line 22:
== [https://github.com/taylorza/MAMEScripts/tree/main/scripts profiler.lua] ==
== [https://github.com/taylorza/MAMEScripts/tree/main/scripts profiler.lua] ==
A simple on-screen profiler (overlay) designed for the ZX Spectrum Next that tracks up to 8 timers using writes to NEXTREG 127 (0x7F) to control the timers.
A simple on-screen profiler (overlay) designed for the ZX Spectrum Next that tracks up to 8 timers using writes to NEXTREG 127 (0x7F) to control the timers.
[https://github.com/taylorza/MAMEScripts/blob/main/README.md#profilerlua Documentation]

Revision as of 02:23, 29 November 2025

These MAME plugins and scripts may be of interest to Next developers and end-users:

Plugins

nextfaststart

Minimizes MAME Next Machine boot time, by allowing code running inside the emulator to control MAME execution speed. Useful for developers. Release: Yes Source: Yes

skipstartupframes

Another plugin to speedup MAME boot time, by specifying a number of frames to run at full speed for each machine being emulated. More general, and useful for end-users or developers. Release: Yes Source: Yes

debugstart

Allows to use the MAME debugger later, without compromising startup speed or needing keys to be pressed to continue at startup. Release: Yes Source: Yes

Scripts

profiler.lua

A simple on-screen profiler (overlay) designed for the ZX Spectrum Next that tracks up to 8 timers using writes to NEXTREG 127 (0x7F) to control the timers. Documentation