OpenCores
URL https://opencores.org/ocsvn/potato/potato/trunk

Subversion Repositories potato

[/] [potato/] [trunk/] [scripts/] [extract_hex.sh] - Diff between revs 2 and 3

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 2 Rev 3
#!/bin/bash
#!/bin/bash
# The Potato Processor - A simple processor for FPGAs
# The Potato Processor - A simple processor for FPGAs
# (c) Kristian Klomsten Skordal 2014 - 2015 <kristian.skordal@wafflemail.net>
# (c) Kristian Klomsten Skordal 2014 - 2015 <kristian.skordal@wafflemail.net>
# Report bugs and issues on <https://github.com/skordal/potato/issues>
# Report bugs and issues on <http://opencores.org/project,potato,bugtracker>
 
 
# This script extracts the code and data sections from executables and
# This script extracts the code and data sections from executables and
# produces hex files that can be used to initialize the instruction and
# produces hex files that can be used to initialize the instruction and
# data memories in the testbench.
# data memories in the testbench.
 
 
if [ -z "$1" -o -z "$2" -o -z "$3" ]; then
if [ -z "$1" -o -z "$2" -o -z "$3" ]; then
        echo "exctract_hex <input elf file> <imem hex file> <dmem hex file>"
        echo "exctract_hex <input elf file> <imem hex file> <dmem hex file>"
        exit 1
        exit 1
fi
fi
 
 
if [ -z "$TOOLCHAIN_PREFIX" ]; then
if [ -z "$TOOLCHAIN_PREFIX" ]; then
        TOOLCHAIN_PREFIX=riscv64-unknown-elf
        TOOLCHAIN_PREFIX=riscv64-unknown-elf
fi;
fi;
 
 
$TOOLCHAIN_PREFIX-objdump -d -w $1 | sed '1,5d' | awk '!/:$/ { print $2; }' | sed '/^$/d' > $2; \
$TOOLCHAIN_PREFIX-objdump -d -w $1 | sed '1,5d' | awk '!/:$/ { print $2; }' | sed '/^$/d' > $2; \
test -z "$($TOOLCHAIN_PREFIX-readelf -l $1 | grep .data)" || \
test -z "$($TOOLCHAIN_PREFIX-readelf -l $1 | grep .data)" || \
        $TOOLCHAIN_PREFIX-objdump -s -j .data $1 | sed '1,4d' | \
        $TOOLCHAIN_PREFIX-objdump -s -j .data $1 | sed '1,4d' | \
        awk '!/:$/ { for (i = 2; i < 6; i++) print $i; }' | sed '/^$/d' > $3;
        awk '!/:$/ { for (i = 2; i < 6; i++) print $i; }' | sed '/^$/d' > $3;
 
 
exit 0
exit 0
 
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.