1
0
mirror of https://github.com/raphnet/dreamcast_usb synced 2024-11-18 07:04:59 -05:00
dreamcast_usb/generate_rxcode.sh
Raphaël Assénat 65dccca103 Lastest work
2013-10-15 02:25:39 +00:00

12 lines
208 B
Bash
Executable File

#!/bin/bash
NSAMPLES=640
echo "// Generated by generate_rxcode.sh"
echo "// Number of samples: $NSAMPLES"
for i in `seq 0 $NSAMPLES`
do
echo "\" in r16, %2\n st z+, r16 \n\" // sample $i "
done