added new flashers and renamed some
This commit is contained in:
Executable
+27
@@ -0,0 +1,27 @@
|
||||
I=mac65.bin
|
||||
O=mac65_128.rom
|
||||
i=0
|
||||
z=""
|
||||
while [[ $i -lt 512 ]]; do
|
||||
z+=FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
|
||||
(( i = i + 1 ))
|
||||
done
|
||||
function out8k() {
|
||||
echo "$z" | xxd -r -ps
|
||||
}
|
||||
|
||||
echo -n >$O
|
||||
dd iseek=0 if=$I of=/dev/stdout bs=4096 count=1 >>$O
|
||||
dd iseek=3 if=$I of=/dev/stdout bs=4096 count=1 >>$O
|
||||
|
||||
for t in 1 2 ; do out8k >>$O ; done
|
||||
|
||||
dd iseek=1 if=$I of=/dev/stdout bs=4096 count=1 >>$O
|
||||
dd iseek=3 if=$I of=/dev/stdout bs=4096 count=1 >>$O
|
||||
|
||||
dd iseek=2 if=$I of=/dev/stdout bs=4096 count=1 >>$O
|
||||
dd iseek=3 if=$I of=/dev/stdout bs=4096 count=1 >>$O
|
||||
|
||||
for t in 1 2 3 1 2 3 4 5 6 7 8 ; do out8k >>$O ; done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user