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

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [bin/] [ihex2mem.tcl] - Diff between revs 17 and 106

Only display areas with differences | Details | Blame | View Log

Rev 17 Rev 106
#!/usr/bin/tclsh
#!/usr/bin/tclsh
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# Copyright (C) 2001 Authors
# Copyright (C) 2001 Authors
#
#
# This source file may be used and distributed without restriction provided
# This source file may be used and distributed without restriction provided
# that this copyright statement is not removed from the file and that any
# that this copyright statement is not removed from the file and that any
# derivative work contains the original copyright notice and the associated
# derivative work contains the original copyright notice and the associated
# disclaimer.
# disclaimer.
#
#
# This source file is free software; you can redistribute it and/or modify
# This source file is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation; either version 2.1 of the License, or
# by the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This source is distributed in the hope that it will be useful, but WITHOUT
# This source is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
# License for more details.
# License for more details.
#
#
# You should have received a copy of the GNU Lesser General Public License
# You should have received a copy of the GNU Lesser General Public License
# along with this source; if not, write to the Free Software Foundation,
# along with this source; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
#
#
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# 
# 
# File Name: ihex2mem.tcl
# File Name: ihex2mem.tcl
# 
# 
# Author(s):
# Author(s):
#             - Olivier Girard,    olgirard@gmail.com
#             - Olivier Girard,    olgirard@gmail.com
#
#
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
# $Rev: 17 $
# $Rev: 106 $
# $LastChangedBy: olivier.girard $
# $LastChangedBy: olivier.girard $
# $LastChangedDate: 2009-08-04 23:15:39 +0200 (Tue, 04 Aug 2009) $
# $LastChangedDate: 2011-03-25 23:01:03 +0100 (Fri, 25 Mar 2011) $
#------------------------------------------------------------------------------
#------------------------------------------------------------------------------
 
 
###############################################################################
###############################################################################
#                            PARAMETER CHECK                                  #
#                            PARAMETER CHECK                                  #
###############################################################################
###############################################################################
 
 
if {$argc != 6} {
if {$argc != 6} {
  puts "ERROR   : wrong number of arguments"
  puts "ERROR   : wrong number of arguments"
  puts "USAGE   : ihex2mem.tcl -ihex <input file> -out <output file> -mem_size <memory size>"
  puts "USAGE   : ihex2mem.tcl -ihex <input file> -out <output file> -mem_size <memory size>"
  puts "Example : ihex2mem.tcl -ihex rom.ihex     -out rom.mem       -mem_size 2048"
  puts "Example : ihex2mem.tcl -ihex rom.ihex     -out rom.mem       -mem_size 2048"
  exit 1
  exit 1
}
}
 
 
# default values
# default values
set ihex      empty.in
set ihex      empty.in
set out       empty.out
set out       empty.out
set mem_size  -1
set mem_size  -1
 
 
# parse arguments
# parse arguments
for {set i 0} {$i < $argc} {incr i} {
for {set i 0} {$i < $argc} {incr i} {
    switch -exact -- [lindex $argv $i] {
    switch -exact -- [lindex $argv $i] {
        -ihex     {set ihex     [lindex $argv [expr $i+1]]; incr i}
        -ihex     {set ihex     [lindex $argv [expr $i+1]]; incr i}
        -out      {set out      [lindex $argv [expr $i+1]]; incr i}
        -out      {set out      [lindex $argv [expr $i+1]]; incr i}
        -mem_size {set mem_size [lindex $argv [expr $i+1]]; incr i}
        -mem_size {set mem_size [lindex $argv [expr $i+1]]; incr i}
    }
    }
}
}
 
 
# Make sure arugments were specified
# Make sure arugments were specified
if {[string eq $ihex empty.in]} {
if {[string eq $ihex empty.in]} {
    puts "IHEX input file isn't specified"
    puts "IHEX input file isn't specified"
    exit 1
    exit 1
}
}
if {[string eq $out empty.out]} {
if {[string eq $out empty.out]} {
    puts "MEMH output file isn't specified"
    puts "MEMH output file isn't specified"
    exit 1
    exit 1
}
}
if {[string eq $mem_size -1]} {
if {[string eq $mem_size -1]} {
    puts "Memory size isn't specified"
    puts "Memory size isn't specified"
    exit 1
    exit 1
}
}
 
 
 
 
###############################################################################
###############################################################################
#                            CONVERSION PROCEDURE                             #
#                            CONVERSION PROCEDURE                             #
###############################################################################
###############################################################################
 
 
#-----------------------------------------------------------------------------#
#-----------------------------------------------------------------------------#
#                                 OPEN FILES                                  #
#                                 OPEN FILES                                  #
#-----------------------------------------------------------------------------#
#-----------------------------------------------------------------------------#
 
 
# IHEX Input
# IHEX Input
if [catch {open $ihex r} f_ihex] {
if [catch {open $ihex r} f_ihex] {
    puts "ERROR Cannot open input file $ihex"
    puts "ERROR Cannot open input file $ihex"
    exit 1
    exit 1
}
}
 
 
# MEMH Output
# MEMH Output
 
if { "$out"=="-"} {
 
   set f_out stdout
 
} else {
if [catch {open $out w } f_out]  {
if [catch {open $out w } f_out]  {
    puts "ERROR Cannot create output file $out"
       puts "ERROR Cannot create output file $out"
    exit 1
       exit 1
}
}
 
}
 
 
#-----------------------------------------------------------------------------#
#-----------------------------------------------------------------------------#
#                                 CONVERSION                                  #
#                                 CONVERSION                                  #
#-----------------------------------------------------------------------------#
#-----------------------------------------------------------------------------#
 
 
 
 
# Conversions procedure
# Conversions procedure
proc hex2dec { val  } {
proc hex2dec { val  } {
  set val [format "%u" 0x[string trimleft $val]]
  set val [format "%u" 0x[string trimleft $val]]
  return $val
  return $val
}
}
 
 
 
 
# Initialize memory array (16 bit words)
# Initialize memory array (16 bit words)
set num_word [expr ($mem_size/2)-1]
set num_word [expr ($mem_size/2)-1]
for {set i 0} {$i <= $num_word} {incr i} {
for {set i 0} {$i <= $num_word} {incr i} {
    set mem_arr($i) 0000
    set mem_arr($i) 0000
}
}
 
 
 
 
# Calculate Address offset (offset=(0x10000-memory_size))
# Calculate Address offset (offset=(0x10000-memory_size))
set mem_offset [expr 65536-$mem_size]
set mem_offset [expr 65536-$mem_size]
 
 
 
 
# Process input file 
# Process input file 
while {[gets $f_ihex line] >= 0} {
while {[gets $f_ihex line] >= 0} {
 
 
    # Process line
    # Process line
    set byte_count [hex2dec [string range $line 1 2]]
    set byte_count [hex2dec [string range $line 1 2]]
    set start_addr [expr ([hex2dec [string range $line 3 6]] - $mem_offset)]
    set start_addr [expr ([hex2dec [string range $line 3 6]] - $mem_offset)]
    set rec_type   [string range $line 7 8]
    set rec_type   [string range $line 7 8]
 
 
    if {$rec_type == 00} {
    if {$rec_type == 00} {
        for {set i 0} {$i < $byte_count*2} {set i [expr $i+4]} {
        for {set i 0} {$i < $byte_count*2} {set i [expr $i+4]} {
            set mem_msb  [string range $line [expr $i+11] [expr $i+12]]
            set mem_msb  [string range $line [expr $i+11] [expr $i+12]]
            set mem_lsb  [string range $line [expr $i+9]  [expr $i+10]]
            set mem_lsb  [string range $line [expr $i+9]  [expr $i+10]]
            set addr     [expr ($start_addr+$i/2)/2]
            set addr     [expr ($start_addr+$i/2)/2]
            set mem_arr($addr) "$mem_msb$mem_lsb"
            set mem_arr($addr) "$mem_msb$mem_lsb"
        }
        }
    }
    }
}
}
close $f_ihex
close $f_ihex
 
 
 
 
# Writing memory array to file
# Writing memory array to file
for {set i 0} {$i <= $num_word} {incr i} {
for {set i 0} {$i <= $num_word} {incr i} {
 
 
    if {![expr $i%16]} {
    if {![expr $i%16]} {
        puts -nonewline $f_out "\n@[format "%04x" $i] "
        puts -nonewline $f_out "\n@[format "%04x" $i] "
    }
    }
    puts -nonewline $f_out " [format "%02s" $mem_arr($i) ]"
    puts -nonewline $f_out " [format "%02s" $mem_arr($i) ]"
}
}
 
 
puts  $f_out "\n"
puts  $f_out "\n"
 
 
 
if { "$out"!="-"} {
close $f_out
close $f_out
 
}
 
 
exit 0
exit 0
 
 

powered by: WebSVN 2.1.0

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