Files
CDi_MiSTer/scripts/create_release.sh
Andre Zeps 65d49f5fb3 Add support for a secondary pointing device
- Optional, must be enabled in Hardware Config

The typical use case of a CD-i, based on
the Mono-I architecture, is the connection
of a pointing device to the front port or
the usage of an Ir Controller.
Both are handled by the SLAVE and usually
combined as the first pointing device.
The back port is available as a serial port.

For 2 players, the first pointing device
is connected to the back port.
During bootup, the operating system decides to
disable the serial port in favor of having
the first pointing device on the back.
The SLAVE doesn't know about this and
all input devices handled by it,
will be perceived as the second pointing device.
2026-01-09 17:16:23 +01:00

9 lines
189 B
Bash
Executable File

#!/bin/bash
set -e
cd "$(dirname "$0")/.."
release_filename=CDi_$(date '+%Y%m%d').rbf
cp output_files/CDi.rbf releases/$release_filename
echo "Copied build to releases/$release_filename"