From 880526968f5e44e59d7489454587acd8d3139c09 Mon Sep 17 00:00:00 2001 From: Max P Date: Mon, 7 Jul 2025 13:15:01 +0000 Subject: [PATCH] feat(src): define clock constraints in ROB.ucf - Adds clock net mapping and timing specifications - Defines a 200 MHz clock period with 50% duty cycle --- src/ROB.ucf | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/ROB.ucf diff --git a/src/ROB.ucf b/src/ROB.ucf new file mode 100644 index 0000000..03bcaec --- /dev/null +++ b/src/ROB.ucf @@ -0,0 +1,3 @@ +NET I_CLK LOC = B8; +NET I_CLK TNM_NET = CLOCK; +TIMESPEC TS_CLOCK = PERIOD CLOCK 200 MHz HIGH 50 %; \ No newline at end of file