dreamcast_usb/generate_rxcode.sh

12 lines
208 B
Bash
Raw Normal View History

2013-10-13 17:01:08 -04:00
#!/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, %1\n st z+, r16 \n\" // sample $i "
2013-10-13 17:01:08 -04:00
done