1 2 3 4 5 6 7 8 9 10 11
12
13 /*!
14 * ======== PinMux ========
15 */
16 metaonly module PinMux inherits IPinMux
17 {
18 instance:
19 /*!
20 * ======== baseAddr ========
21 * Address of the peripheral's control register.
22 *
23 * A peripheral's registers are commonly accessed through a structure
24 * that defines the offsets of a particular register from the lowest
25 * address mapped to a peripheral. That lowest address is specified by
26 * this parameter.
27 */
28 config UInt baseAddr;
29 }
30 31 32
33