git-svn-id: http://moon:8086/svn/vhdl/trunk@1418 cc03376c-175c-47c8-b038-4cd826a8556b
51 lines
1.9 KiB
Bash
51 lines
1.9 KiB
Bash
#!/bin/sh
|
|
|
|
# ----------------------------------------------------------------------
|
|
# Project: JCPU, a portable 8-bit RISC CPU written in VHDL
|
|
# This file: rom-file generation for cpu_core
|
|
#
|
|
# Copyright (C) 2007 J. Ahrensfeld
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# For questions and ideas, please contact the author at jens@jayfield.org
|
|
#
|
|
# ---------------------------------------------------------------------
|
|
|
|
TARGET=$2
|
|
DSTDIR=$1
|
|
|
|
JASM_HOME=/cygdrive/w/vhdl/lib/CPUs/JCpu/tools
|
|
|
|
$JASM_HOME/jasm.rb $TARGET.jsm
|
|
|
|
irom_tcl_snippet="$TARGET.irom.tcl.snip"
|
|
irom_vhdl_snippet="$TARGET.irom.vhdl.snip"
|
|
irom_ld_vhdl_snippet="$TARGET.irom_ld.vhdl.snip"
|
|
xrom_tcl_snippet="$TARGET.xrom.tcl.snip"
|
|
xrom_vhdl_snippet="$TARGET.xrom.vhdl.snip"
|
|
xrom_ld_vhdl_snippet="$TARGET.xrom_ld.vhdl.snip"
|
|
|
|
$JASM_HOME/insrom.rb $irom_vhdl_snippet $JASM_HOME/irom.vhd.tpl >$DSTDIR/$TARGET\_irom.vhdl
|
|
$JASM_HOME/insrom.rb $irom_ld_vhdl_snippet $JASM_HOME/irom_ld.vhd.tpl >$DSTDIR/$TARGET\_irom_ld.vhdl
|
|
|
|
$JASM_HOME/insrom.rb $xrom_vhdl_snippet $JASM_HOME/xrom.vhd.tpl >$DSTDIR/$TARGET\_xrom.vhdl
|
|
$JASM_HOME/insrom.rb $xrom_ld_vhdl_snippet $JASM_HOME/xrom_ld.vhd.tpl >$DSTDIR/$TARGET\_xrom_ld.vhdl
|
|
|
|
cat $irom_tcl_snippet > $TARGET.tcl.snip.snip
|
|
cat $xrom_tcl_snippet >> $TARGET.tcl.snip.snip
|
|
$JASM_HOME/insrom.rb $TARGET.tcl.snip.snip $JASM_HOME/rom.tcl.tpl >$TARGET.tcl
|
|
|
|
rm -f *.snip
|