1 2 3 4 5 6 7 8 9 10 11
12 13 14
15
16 package host.platforms.macos;
17
18 /*!
19 * ======== Platform ========
20 * Native macos platform support
21 *
22 * This module implements xdc.platform.IPlatform and defines configuration
23 * parameters that correspond to this platform's Cpu's, Board's, etc.
24 *
25 * The configuration parameters are initialized in this package's
26 * configuration script (package.cfg) and "bound" to the TCOM object
27 * model. Once they are part of the model, these parameters are
28 * queried by a program's configuration script.
29 *
30 * This particular platform has a single Cpu, and therefore, only
31 * declares a single CPU configuration object. Multi-CPU platforms
32 * would declare multiple Cpu configuration parameters (one per
33 * platform CPU).
34 */
35
36 metaonly module Platform inherits xdc.platform.IPlatform
37 {
38 /*!
39 * ======== BOARD ========
40 * @_nodoc this structure (and CPU below) exists to satisfy the
41 * IPlatform interface requirements; these fields are largely
42 * unnecessary for host platforms.
43 */
44 readonly config xdc.platform.IPlatform.Board BOARD = {
45 id: "0",
46 boardName: "intel-x86",
47 boardFamily: "intel-x86",
48 boardRevision: null
49 };
50
51 /*!
52 * ======== CPU ========
53 * @_nodoc
54 */
55 readonly config xdc.platform.IExeContext.Cpu CPU = {
56 id: "0",
57 clockRate: 1000.0,
58 catalogName: "host.platforms.macos",
59 deviceName: "Intel80586",
60 revision: "",
61 };
62
63 instance:
64 }
65 66 67
68