-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathemu_main.c
62 lines (48 loc) · 1.38 KB
/
emu_main.c
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
/////////////////////////////////////////////////////////////////////////////////////////
// RPi Pico PIO emulator for C
// sample
/////////////////////////////////////////////////////////////////////////////////////////
#define PIO_OUT_GPIO_BIT_BY_BIT
//#undef PIO_OUT_GPIO_BIT_BY_BIT
//#define PIO_IN_GPIO_BIT_BY_BIT
#undef PIO_IN_GPIO_BIT_BY_BIT
//#define DISP_ASM_STDOUT
#undef DISP_ASM_STDOUT
#define DISP_TRACE_STDOUT
//#undef DISP_TRACE_STDOUT
#include "picopio_emu.h"
int main(int argc, char *argv[])
{
///////////////////////////////////////////////////////////////
// asm code
///////////////////////////////////////////////////////////////
pio_code_start_simple(
"pio0_sm0", // char *funcname
0, // int sm_id
PIO_UNUSE, // int in_pins
PIO_UNUSE, // int in_num
PIO_UNUSE, // int out_pins
PIO_UNUSE, // int out_num
0, // int sideset_pins
3, // int sideset_num
false // bool sidest_opt
);
//----> actual code
pio_wrap_target();
// sideset delay
pio_nop(0x01, 0);
pio_nop(0x02, 1);
pio_nop(0x04, 2);
pio_wrap();
//<---- actual code
pio_code_end(true, "pio0_sm0.pio");
///////////////////////////////////////////////////////////////
// emulation
///////////////////////////////////////////////////////////////
pio_run_emulation(
30, // int cycles
"in.csv", // char *file_name_in
"out.csv" // char *file_name_out
);
}
// end of file