blob: c97766eee974751ecff28425d8d9c0452edf42a4 [file]
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("//bazel:defs.bzl", "compatible_with_rp2")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "hardware_exception",
srcs = ["exception.c"],
hdrs = ["include/hardware/exception.h"],
includes = ["include"],
target_compatible_with = compatible_with_rp2(),
deps = [
"//src/rp2_common:hardware_structs",
"//src/rp2_common:pico_platform",
"//src/rp2_common:platform_defs",
"//src/rp2_common/hardware_base",
"//src/rp2_common/hardware_sync",
],
)
# TODO: RISC-V support.
filegroup(
name = "exception_table_riscv",
srcs = ["exception_table_riscv.S"],
)