summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/netlist/devices/nld_log.c
blob: e175c4670a8d3dc81d12f8e2f1029878bf7dad6f (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * nld_log.c
 *
 */

#include "nld_log.h"
#include "sound/wavwrite.h"

//FIXME: what to do with save states?

NETLIB_START(log)
{
    register_input("I", m_I);

    pstring filename = "netlist_" + name() + ".log";
    m_file = fopen(filename, "w");
}

NETLIB_UPDATE(log)
{
    fprintf(m_file, "%e %e\n", netlist().time().as_double(), INPANALOG(m_I));
}

NETLIB_NAME(log)::~NETLIB_NAME(log)()
{
    fclose(m_file);
}

NETLIB_START(logD)
{
    NETLIB_NAME(log)::start();
    register_input("I2", m_I2);
}

NETLIB_UPDATE(logD)
{
    fprintf(m_file, "%e %e\n", netlist().time().as_double(), INPANALOG(m_I) - INPANALOG(m_I2));
}

// FIXME: Implement wav later, this must be clock triggered device where the input to be written
//        is on a subdevice ...
#if 0
NETLIB_START(wav)
{
    register_input("I", m_I);

    pstring filename = "netlist_" + name() + ".wav";
    m_file = wav_open(filename, sample_rate(), active_inputs()/2)
}

NETLIB_UPDATE(wav)
{
    fprintf(m_file, "%e %e\n", netlist().time().as_double(), INPANALOG(m_I));
}

NETLIB_NAME(log)::~NETLIB_NAME(wav)()
{
    fclose(m_file);
}
#endif