blob: 6b1bc51120402e51cec1af9efab0302b0d7ace29 [file] [log] [blame]
// Copyright 2022 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// [START bind_library]
library examples.gizmo.bind;
// Include properties from other libraries
using fuchsia.acpi;
// Define new properties and values for this library
string ModelName;
enum GizmoType {
MEM_64K,
MEM_128K,
MEM_256K,
};
// Extend values defined in other libraries
extend uint fuchsia.BIND_PCI_VID {
GIZMOTRONICS = 0x314159,
};
// [END bind_library]