9 lines
322 B
Bash
Executable File
9 lines
322 B
Bash
Executable File
#!/bin/sh
|
|
# little script to burn the IP21 cpu proms.
|
|
# -I indicates Intel86 format
|
|
# Family code is for the Intel 27C010 EPROM, for the unisite programmer.
|
|
|
|
echo "Downloading $1 to dataio attached to pigpen..."
|
|
/usr/local/bin/nprom -v -I -w -c0d60f5 -a /dev/ttyd2 < $1
|
|
echo "Transfer complete. You may remove the EPROM"
|