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

Subversion Repositories eco32

[/] [eco32/] [trunk/] [fpga/] [mc-vl/] [show_single] - Rev 310

Compare with Previous | Blame | View Log

#! /bin/bash

if (( $# == 0 ))
then
  echo "usage: show_single <test>"
  exit
fi

BUILD=../tests/$1
if [ ! -r $BUILD/$1.dat ]
then
  echo "test file '$BUILD/$1.dat' not found"
  exit
fi

make clean

echo "cp $BUILD/$1.dat rom.dat"
cp $BUILD/$1.dat rom.dat

if [ -r $BUILD/duration.dat ]
then
  echo "cp $BUILD/duration.dat duration.dat"
  cp $BUILD/duration.dat duration.dat
fi

if [ -r $BUILD/kbd.dat ]
then
  echo "cp $BUILD/kbd.dat kbd.dat"
  cp $BUILD/kbd.dat kbd.dat
fi

if [ -r $BUILD/ser0.dat ]
then
  echo "cp $BUILD/ser0.dat ser0.dat"
  cp $BUILD/ser0.dat ser0.dat
fi

if [ -r $BUILD/ser1.dat ]
then
  echo "cp $BUILD/ser1.dat ser1.dat"
  cp $BUILD/ser1.dat ser1.dat
fi

make show

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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