SourceFiles.org - Use the Source, Luke
Home | Register | News | Forums | Guide | MyLinks | Bookmark

Related Sites

Latest News
  General News
  Reviews
  Press Releases
  Software
  Hardware
  Security
  Tutorials
  Off Topic


Back to files

// Verilog Behavioral Simulator
// Copyright (C) 2001 Jimen Ching
//
// This file is part of the Verilog Behavioral Simulator package. // See the file COPYRIGHT for copyright and disclaimer information. // See the file COPYING for the licensing terms and conditions. // See the file CONTRIBUTORS for a list of contributing authors. //
// readmem.cc

#include "stmt/readmem.h"

systask_readmemb::systask_readmemb()

        : _name("$readmemb")
        {}

systask_readmemb::ostream_type &
systask_readmemb::display(ostream_type &s) const

{ s << _name; return s; }

void
systask_readmemb::setup(const setup_type &setup)

{ setup(this); }

bool
systask_readmemb::trigger(const trigger_type &trigger)

{ return trigger(this); }

systask_readmemh::systask_readmemh()

        : _name("$readmemh")
        {}

systask_readmemh::ostream_type &
systask_readmemh::display(ostream_type &s) const

{ s << _name; return s; }

void
systask_readmemh::setup(const setup_type &setup)

{ setup(this); }

bool
systask_readmemh::trigger(const trigger_type &trigger)

{ return trigger(this); }


Other Sites

Discussion Groups
  Beginners
  Distributions
  Networking / Security
  Software
  PDAs

About | FAQ | Privacy | Awards | Contact
Comments to the webmaster are welcome.
Copyright 2006 Sourcefiles.org All rights reserved.