1using "platforms/cpus/miv.repl"
2
3gpioOutputs:
4    0 -> led0@0
5    1 -> led1@0
6
7led0: Miscellaneous.LED @ gpioOutputs 0
8    invert: true
9
10led1: Miscellaneous.LED @ gpioOutputs 1
11    invert: true
12
13user_switch_0: Miscellaneous.Button @ gpioInputs 0
14    invert: true
15    -> gpioInputs@0
16
17user_switch_1: Miscellaneous.Button @ gpioInputs 1
18    invert: true
19    -> gpioInputs@1
20
21user_switch_2: Miscellaneous.Button @ gpioInputs 2
22    invert: true
23    -> gpioInputs@2
24