source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_Testbench_add_output.cpp @ 3

Last change on this file since 3 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 463 bytes
Line 
1#ifdef VHDL_TESTBENCH
2
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/include/Vhdl_Testbench.h"
11
12#include <sstream>
13using namespace std;
14
15namespace morpheo              {
16namespace behavioural          {
17 
18  void Vhdl_Testbench::add_output (uint32_t value)
19  {
20    _list_output_cycle.push_front(toBase2(value,*_num_output));
21    _num_output ++;
22  };
23 
24}; // end namespace behavioural         
25}; // end namespace morpheo             
26
27#endif
Note: See TracBrowser for help on using the repository browser.