From f39b2b31fc8a604d7a3972cd15473bc8cab28684 Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Sat, 12 Sep 2015 14:11:23 -0500 Subject: tool to create saturn boot sector --- tools/bin2c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 tools/bin2c (limited to 'tools') diff --git a/tools/bin2c b/tools/bin2c new file mode 100755 index 0000000..25bb6f7 --- /dev/null +++ b/tools/bin2c @@ -0,0 +1,35 @@ +#! /bin/sh + +readbyte() +{ + read dummy hex << EOF + $(dd bs=1 count=1 2> /dev/null | od -t xC) +EOF + printf "%s\n" $hex +} + +if [ $# -ne 1 ] ; then + echo "usage: $0 in.bin > out.c" + exit +fi + +varname=$(basename $1 .bin | tr -d "\n" | tr -c a-zA-Z _) +length=0 + +exec < $1 +printf "#include \n" +printf "const unsigned char %s[] = {" $varname + +byte=$(readbyte) +until [ -z $byte ] ; do + [ $(($length % 12)) -eq 0 ] && printf "\n\t" + printf "0x%s," $byte + let length+=1 + + byte=$(readbyte) +done + +[ $length -ne 0 ] && printf "\n" +printf "};\n" + +printf "const size_t %s_size = %s;\n" $varname $length -- cgit v1.2.3