git-svn-id: http://moon:8086/svn/vhdl/trunk@1423 cc03376c-175c-47c8-b038-4cd826a8556b
52 lines
2.0 KiB
Bash
52 lines
2.0 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 library is free software; you can redistribute it and/or
|
|
# modify 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 (at your option) any later version.
|
|
|
|
# This library 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
|
|
# Lesser General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
# 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
|