From 09b69e1b26eb06b3f8e1211b298935a9f9be549c Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Mon, 2 Dec 2024 14:33:09 +0200 Subject: [PATCH] feat: danger_level.yaml file --- projects/danger_level.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 projects/danger_level.yaml diff --git a/projects/danger_level.yaml b/projects/danger_level.yaml new file mode 100644 index 0000000..eb5c772 --- /dev/null +++ b/projects/danger_level.yaml @@ -0,0 +1,15 @@ +# This file specifies the danger level overrides for specific projects. +# +# The following danger levels are available: +# +# - safe: The project is safe to run (default for purely digital projects). +# - medium: The project can damage the ASIC under certain conditions. +# - high: The project will damage the ASIC. +# - unknown: The danger level is unknown (default for analog / custom GDS projects). +# +# Example: +# ```yaml +# tt_um_risky_riscv: +# level: medium +# reason: 'The project shorts the power rails when the "addi x0, x0, 0xdeadbeef" instruction is executed.' +# ```