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

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [core/] [sim/] [rtl_sim/] [src/] [scan.v] - Diff between revs 134 and 202

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

Rev 134 Rev 202
/*===========================================================================*/
/*===========================================================================*/
/* 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        */
/*                                                                           */
/*                                                                           */
/*===========================================================================*/
/*===========================================================================*/
/*                                SCAN test                                  */
/*                                SCAN test                                  */
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/* The purpose of this test is to let the scan_mode and scan_enable signals  */
/* The purpose of this test is to let the scan_mode and scan_enable signals  */
/* toggle a bit in order to clean-up code coverage and give more visibility  */
/* toggle a bit in order to clean-up code coverage and give more visibility  */
/* on potential "real" coverage loss.                                        */
/* on potential "real" coverage loss.                                        */
/*                                                                           */
/*                                                                           */
/* Author(s):                                                                */
/* Author(s):                                                                */
/*             - Olivier Girard,    olgirard@gmail.com                       */
/*             - Olivier Girard,    olgirard@gmail.com                       */
/*                                                                           */
/*                                                                           */
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/* $Rev: 85 $                                                                */
/* $Rev: 85 $                                                                */
/* $LastChangedBy: olivier.girard $                                          */
/* $LastChangedBy: olivier.girard $                                          */
/* $LastChangedDate: 2011-01-28 22:05:37 +0100 (Fri, 28 Jan 2011) $          */
/* $LastChangedDate: 2011-01-28 22:05:37 +0100 (Fri, 28 Jan 2011) $          */
/*===========================================================================*/
/*===========================================================================*/
 
 
integer ii;
integer ii;
 
 
initial
initial
   begin
   begin
      $display(" ===============================================");
      $display(" ===============================================");
      $display("|                 START SIMULATION              |");
      $display("|                 START SIMULATION              |");
      $display(" ===============================================");
      $display(" ===============================================");
 
 
 
      // Disable automatic DMA verification
 
      #10;
 
      dma_verif_on = 0;
 
 
      repeat(5) @(posedge mclk);
      repeat(5) @(posedge mclk);
      stimulus_done = 0;
      stimulus_done = 0;
 
 
      // Disable detection of the end of test
      // Disable detection of the end of test
      force inst_pc = 16'h0000;
      force inst_pc = 16'h0000;
 
 
 
 
 
 
      //  SCAN MODE
      //  SCAN MODE
      //------------------------------
      //------------------------------
 
 
      for ( ii=0; ii < 8; ii=ii+1)
      for ( ii=0; ii < 8; ii=ii+1)
        begin
        begin
           scan_mode = ~scan_mode;
           scan_mode = ~scan_mode;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
        end
        end
      scan_mode = 1'b0;
      scan_mode = 1'b0;
 
 
      reset_n       = 1'b1;
      reset_n       = 1'b1;
      #93;
      #93;
      reset_n       = 1'b0;
      reset_n       = 1'b0;
      #593;
      #593;
      reset_n       = 1'b1;
      reset_n       = 1'b1;
      repeat(20) @(posedge mclk);
      repeat(20) @(posedge mclk);
 
 
      //  SCAN ENABLE
      //  SCAN ENABLE
      //------------------------------
      //------------------------------
 
 
      for ( ii=0; ii < 8; ii=ii+1)
      for ( ii=0; ii < 8; ii=ii+1)
        begin
        begin
           scan_enable = ~scan_enable;
           scan_enable = ~scan_enable;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
        end
        end
      scan_enable = 1'b0;
      scan_enable = 1'b0;
 
 
      reset_n       = 1'b1;
      reset_n       = 1'b1;
      #93;
      #93;
      reset_n       = 1'b0;
      reset_n       = 1'b0;
      #593;
      #593;
      reset_n       = 1'b1;
      reset_n       = 1'b1;
      repeat(20) @(posedge mclk);
      repeat(20) @(posedge mclk);
 
 
      //  SCAN MODE & SCAN ENABLE
      //  SCAN MODE & SCAN ENABLE
      //------------------------------
      //------------------------------
 
 
      for ( ii=0; ii < 8; ii=ii+1)
      for ( ii=0; ii < 8; ii=ii+1)
        begin
        begin
           scan_mode = ~scan_mode;
           scan_mode = ~scan_mode;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
           scan_enable = ~scan_enable;
           scan_enable = ~scan_enable;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
           scan_enable = ~scan_enable;
           scan_enable = ~scan_enable;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
           scan_mode = ~scan_mode;
           scan_mode = ~scan_mode;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
        end
        end
      scan_mode   = 1'b0;
      scan_mode   = 1'b0;
      scan_enable = 1'b0;
      scan_enable = 1'b0;
      repeat(5) @(posedge mclk);
      repeat(5) @(posedge mclk);
 
 
      for ( ii=0; ii < 8; ii=ii+1)
      for ( ii=0; ii < 8; ii=ii+1)
        begin
        begin
           scan_enable = ~scan_enable;
           scan_enable = ~scan_enable;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
           scan_mode = ~scan_mode;
           scan_mode = ~scan_mode;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
           scan_mode = ~scan_mode;
           scan_mode = ~scan_mode;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
           scan_enable = ~scan_enable;
           scan_enable = ~scan_enable;
           repeat(5) @(posedge mclk);
           repeat(5) @(posedge mclk);
        end
        end
      scan_mode   = 1'b0;
      scan_mode   = 1'b0;
      scan_enable = 1'b0;
      scan_enable = 1'b0;
 
 
      reset_n       = 1'b1;
      reset_n       = 1'b1;
      #93;
      #93;
      reset_n       = 1'b0;
      reset_n       = 1'b0;
      #593;
      #593;
      reset_n       = 1'b1;
      reset_n       = 1'b1;
      repeat(20) @(posedge mclk);
      repeat(20) @(posedge mclk);
 
 
      release inst_pc;
      release inst_pc;
 
 
 
 
 
 
      stimulus_done = 1;
      stimulus_done = 1;
   end
   end
 
 
 
 

powered by: WebSVN 2.1.0

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