blob: e747c087e65f3a70b0fa1c05c44d83bc8376b450 [file]
load("@rules_cc//cc:cc_library.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "hardware_irq",
srcs = ["irq.c"],
hdrs = ["include/hardware/irq.h"],
includes = ["include"],
tags = ["manual"], # TODO: No hardware/regs/intctrl.h for host yet.
target_compatible_with = ["//bazel/constraint:host"],
deps = [
"//src/common/hardware_claim",
"//src/host/pico_platform",
],
)