blob: 6694b49d9b5b592bd863b06dae54186ddf1d78a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh -
# bin2asm (binary to asm) shell script version by ukai
#
#
if [ $# -lt 1 ]; then
echo 'usage: $0 [in]'
exit 1
fi
in=$1
size=`ls -l ${in} | awk '{print $5}'`
# Oops, must 8 byte align
len=`expr \( $size + 8 \) / 8 \* 8`
echo "/* This file is automatically generated by bin2asm.sh */"
echo "/* Original file is '${in}' */"
echo
dd if=${in} bs=${len} conv=sync |\
hexdump -v -e '" .byte " 7/1 "0x%02x, " 1/1 " 0x%02x" "\n"'
echo
echo "/* Total size = $size -> $len */"
echo "/* End of File */"
|