blob: a9b7195b8946d207311a9d4519571e9b8af0a092 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 | #pragma once
#include <systemc.h>
#include <optical_signal.h>
#include <pcm_device.h>
#include <probe.h>
#include <specs.h>
SC_MODULE(PCMElement_tb)
{
public:
    spx::oa_port_out_type IN;
    spx::oa_port_in_type OUT;
    void run_1();
    void monitor();
    SC_CTOR(PCMElement_tb)
    {
        SC_HAS_PROCESS(PCMElement_tb);
        SC_THREAD(run_1);
        SC_THREAD(monitor);
        sensitive << IN << OUT;
    }
};
void PCMElement_tb_run();
 |