added new flashers and renamed some

This commit is contained in:
Jakub Husak
2020-05-31 15:40:34 +02:00
parent d49f976072
commit 466c8ea4dc
31 changed files with 774 additions and 4 deletions
+27
View File
@@ -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