-
Will WASM-4 work on ESP32 microcontroller + one of these LCD displays:
or game consoles:
If you use Wasm3, it should be possible to run WASM-4 games in Wasm3 supported hardware, but how to interface LCD displays and physical buttons with WASM-4 API? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It should work, and others have had some luck getting it ported to different devices, eg: https://twitter.com/alvaroviebrantz/status/1518343016011943939 If your device is supported by RetroArch, you should be able to use the libretro WASM-4 core directly. Otherwise you'll need to write a new backend that implements the platform-specific I/O parts, and add a new CMake target to build with the new source files. You can check out the existing backends to see what would need to be implemented. |
Beta Was this translation helpful? Give feedback.
It should work, and others have had some luck getting it ported to different devices, eg: https://twitter.com/alvaroviebrantz/status/1518343016011943939
If your device is supported by RetroArch, you should be able to use the libretro WASM-4 core directly.
Otherwise you'll need to write a new backend that implements the platform-specific I/O parts, and add a new CMake target to build with the new source files. You can check out the existing backends to see what would need to be implemented.