summaryrefslogtreecommitdiff
path: root/monitor/mon.h
blob: 4430e5fae734b19780a23b401b0a1248d570a59f (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#ifndef DEF_MON_H
#define DEF_MON_H

#include <time.h>
#include <stdio.h>
#include <curses.h>

typedef unsigned long long int t_value;

typedef struct {
    char name[32];
    char v_bin[32];
    t_value v_int;
} t_output;

typedef struct {
    char name[32];
    int size;
    char value[32];
} t_input;

typedef enum {
    MS_PERROR,
    MS_FINISH,
    MS_RUN,
    MS_AUTO,
    MS_FREQ
} t_status;

typedef enum {
    TM_SECOND,
    TM_FAST,
    TM_NO_TICK
} t_tick_mode;

typedef struct {
    FILE *to_sim, *from_sim;

    int n_inputs, n_outputs;
    t_input *inputs;
    t_output *outputs;

    int step;

    int max_freq;
    int target_freq;
    int actual_freq;
    int calc_time_usec;

    t_status status;

    time_t clk;
    int ticker_input;
    t_tick_mode ticker_mode;

    int ser_in_in, ser_in_busy_out, ser_out;
    char ser_buf[256];
    char ser_out_buf;

    int d7[8];
} t_mon;

void disp_init();
void disp_display(t_mon *mon);
void disp_display_ser(t_mon *mon);
void disp_finish();

void handle_kbd(t_mon *mon);

int mon_read_prologue(t_mon *mon);  //  nonzero on error
void mon_step(t_mon *mon);
void mon_loop(t_mon *mon);

void mon_handle_command(t_mon *mon, const char *c);

#endif