kovplus game not work via mame emscripten #8
Replies: 3 comments 2 replies
-
I think you need to re-examine which driver you are compiling to use for kovplus - that machine is not a NeoGeo game. In essence you are trying to insert a game in with a driver it is not designed for.. unless I'm missing something less obvious. |
Beta Was this translation helpful? Give feedback.
-
I also tried another new JSMAMELoader(
JSMAMELoader.driver("mslug"),
JSMAMELoader.nativeResolution(256, 256),
JSMAMELoader.scale(3),
JSMAMELoader.emulatorJS("emulators/mame/neogeo.js"),
JSMAMELoader.mountFile(
"neogeo.zip",
JSMAMELoader.fetchFile("Bios", "emulators/roms/neogeo.zip")
),
JSMAMELoader.mountFile(
"mslug.zip",
JSMAMELoader.fetchFile("Game File", "emulators/roms/mslug.zip")
)
) |
Beta Was this translation helpful? Give feedback.
-
Btw, how can I run the generated HTML, how to configure the bios/rom like emularity. I have build the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I tried to build an emscripten build of mame 0.246 in order to run some games in the browser. I encountered some problems when build the mame mamedev/mame#10257, and finally I build successfully.
I use
emmake make SUBTARGET=arcade SOURCES=src/mame/neogeo/neogeo.cpp TOOLS=0 NOWERROR=1 REGENIE=1 -j8
to build the wasm/js/html. And I also triedemmake make SUBTARGET=neogeo SOURCES=src/mame/neogeo/neogeo.cpp TOOLS=0 NOWERROR=1 REGENIE=1 -j8
, both of them produce the same files except filename different.Then I use https://github.com/db48x/emularity/ to load the game. The configuration part of code is the following.
No errors on the console of devtools. I could not find any clues to continue to promote the work. Does anyone can help me.
Thanks very much in advance.
I also tested some other games like
tengai
(emmake make SUBTARGET=psikyo SOURCES=src/mame/psikyo/psikyo.cpp -j8 NOWERROR=1
),shadfrce
(emmake make SUBTARGET=shadfrce SOURCES=src/mame/technos/shadfrce.cpp -j8 NOWERROR=1
). Both of the two works.Beta Was this translation helpful? Give feedback.
All reactions