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

Subversion Repositories qspiflash

[/] [qspiflash/] [trunk/] [bench/] [cpp/] [testb.h] - Diff between revs 16 and 23

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

Rev 16 Rev 23
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
// Filename:    testb.h
// Filename:    testb.h
//
//
// Project:     Wishbone Controlled Quad SPI Flash Controller
// Project:     A Set of Wishbone Controlled SPI Flash Controllers
//
//
// Purpose:     A wrapper for a common interface to a clocked FPGA core
// Purpose:     A wrapper for a common interface to a clocked FPGA core
//              begin exercised in Verilator.
//              begin exercised in Verilator.
//
//
// Creator:     Dan Gisselquist, Ph.D.
// Creator:     Dan Gisselquist, Ph.D.
//              Gisselquist Technology, LLC
//              Gisselquist Technology, LLC
//
//
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
// Copyright (C) 2015,2017, Gisselquist Technology, LLC
// Copyright (C) 2015,2017-2018, Gisselquist Technology, LLC
//
//
// This program is free software (firmware): you can redistribute it and/or
// This file is part of the set of Wishbone controlled SPI flash controllers
// modify it under the terms of  the GNU General Public License as published
// project
// by the Free Software Foundation, either version 3 of the License, or (at
//
// your option) any later version.
// The Wishbone SPI flash controller project is free software (firmware):
//
// you can redistribute it and/or modify it under the terms of the GNU Lesser
// This program is distributed in the hope that it will be useful, but WITHOUT
// General Public License as published by the Free Software Foundation, either
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
// version 3 of the License, or (at your option) any later version.
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
//
// for more details.
// The Wishbone SPI flash controller project is distributed in the hope
//
// that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
// You should have received a copy of the GNU General Public License along
// warranty of MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// with this program.  (It's in the $(ROOT)/doc directory.  Run make with no
// GNU Lesser General Public License for more details.
// target there if the PDF file isn't present.)  If not, see
//
 
// You should have received a copy of the GNU Lesser General Public License
 
// along with this program.  (It's in the $(ROOT)/doc directory.  Run make
 
// with no target there if the PDF file isn't present.)  If not, see
// <http://www.gnu.org/licenses/> for a copy.
// <http://www.gnu.org/licenses/> for a copy.
//
//
// License:     GPL, v3, as defined and found on www.gnu.org,
// License:     LGPL, v3, as defined and found on www.gnu.org,
//              http://www.gnu.org/licenses/gpl.html
//              http://www.gnu.org/licenses/lgpl.html
//
//
//
//
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
//
//
//
#ifndef TESTB_H
#ifndef TESTB_H
#define TESTB_H
#define TESTB_H
 
 
#include <stdio.h>
#include <stdio.h>
#include <stdint.h>
#include <stdint.h>
#include <verilated_vcd_c.h>
#include <verilated_vcd_c.h>
 
 
#define TBASSERT(TB,A) do { if (!(A)) { (TB).closetrace(); } assert(A); } while(0);
#define TBASSERT(TB,A) do { if (!(A)) { (TB).closetrace(); } assert(A); } while(0);
 
 
template <class VA>     class TESTB {
template <class VA>     class TESTB {
public:
public:
        VA      *m_core;
        VA      *m_core;
        VerilatedVcdC*  m_trace;
        VerilatedVcdC*  m_trace;
        unsigned long   m_tickcount;
        unsigned long   m_tickcount;
 
 
        TESTB(void) : m_trace(NULL), m_tickcount(0l) {
        TESTB(void) : m_trace(NULL), m_tickcount(0l) {
                m_core = new VA;
                m_core = new VA;
                Verilated::traceEverOn(true);
                Verilated::traceEverOn(true);
                m_core->i_clk = 0;
                m_core->i_clk = 0;
                eval(); // Get our initial values set properly.
                eval(); // Get our initial values set properly.
        }
        }
        virtual ~TESTB(void) {
        virtual ~TESTB(void) {
                if (m_trace) m_trace->close();
                if (m_trace) m_trace->close();
                delete m_core;
                delete m_core;
                m_core = NULL;
                m_core = NULL;
        }
        }
 
 
        virtual void    opentrace(const char *vcdname) {
        virtual void    opentrace(const char *vcdname) {
                if (!m_trace) {
                if (!m_trace) {
                        m_trace = new VerilatedVcdC;
                        m_trace = new VerilatedVcdC;
                        m_core->trace(m_trace, 99);
                        m_core->trace(m_trace, 99);
                        m_trace->open(vcdname);
                        m_trace->open(vcdname);
                }
                }
        }
        }
 
 
        virtual void    closetrace(void) {
        virtual void    closetrace(void) {
                if (m_trace) {
                if (m_trace) {
                        m_trace->close();
                        m_trace->close();
                        m_trace = NULL;
                        m_trace = NULL;
                }
                }
        }
        }
 
 
        virtual void    eval(void) {
        virtual void    eval(void) {
                m_core->eval();
                m_core->eval();
        }
        }
 
 
        virtual void    tick(void) {
        virtual void    tick(void) {
                m_tickcount++;
                m_tickcount++;
 
 
                // Make sure we have our evaluations straight before the top
                // Make sure we have our evaluations straight before the top
                // of the clock.  This is necessary since some of the 
                // of the clock.  This is necessary since some of the 
                // connection modules may have made changes, for which some
                // connection modules may have made changes, for which some
                // logic depends.  This forces that logic to be recalculated
                // logic depends.  This forces that logic to be recalculated
                // before the top of the clock.
                // before the top of the clock.
                eval();
                eval();
                if (m_trace) m_trace->dump(10*m_tickcount-2);
                if (m_trace) m_trace->dump(10*m_tickcount-2);
                m_core->i_clk = 1;
                m_core->i_clk = 1;
                eval();
                eval();
                if (m_trace) m_trace->dump(10*m_tickcount);
                if (m_trace) m_trace->dump(10*m_tickcount);
                m_core->i_clk = 0;
                m_core->i_clk = 0;
                eval();
                eval();
                if (m_trace) {
                if (m_trace) {
                        m_trace->dump(10*m_tickcount+5);
                        m_trace->dump(10*m_tickcount+5);
                        m_trace->flush();
                        m_trace->flush();
                }
                }
        }
        }
 
 
        virtual void    reset(void) {
        virtual void    reset(void) {
        }
        }
};
};
 
 
#endif
#endif
 
 

powered by: WebSVN 2.1.0

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