1load("//bazel:defs.bzl", "compatible_with_rp2")
2
3package(default_visibility = ["//visibility:public"])
4
5cc_library(
6    name = "hardware_base",
7    hdrs = ["include/hardware/address_mapped.h"],
8    includes = ["include"],
9    target_compatible_with = compatible_with_rp2(),
10    deps = [
11        "//src/common/pico_base_headers",
12        "//src/rp2_common:hardware_regs",
13        "//src/rp2_common:hardware_structs",
14        "//src/rp2_common:pico_platform_internal",
15    ],
16)
17