From 0e868b5ad544078af48ea6db8ebb9796e369b2dc Mon Sep 17 00:00:00 2001 From: Mateusz Faderewski Date: Fri, 3 May 2024 17:55:40 +0200 Subject: [PATCH] [SC64][FW] Added placeholder test point outputs in the FPGA project --- fw/project/lcmxo2/sc64.lpf | 3 +++ fw/rtl/top.sv | 7 ++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/fw/project/lcmxo2/sc64.lpf b/fw/project/lcmxo2/sc64.lpf index 49d8d38..4ce07ec 100644 --- a/fw/project/lcmxo2/sc64.lpf +++ b/fw/project/lcmxo2/sc64.lpf @@ -194,6 +194,9 @@ LOCATE COMP "sdram_dqm[0]" SITE "97" ; LOCATE COMP "sdram_dqm[1]" SITE "73" ; LOCATE COMP "sdram_ras" SITE "94" ; LOCATE COMP "sdram_we" SITE "96" ; +LOCATE COMP "test_point[0]" SITE "23" ; +LOCATE COMP "test_point[1]" SITE "24" ; +LOCATE COMP "test_point[2]" SITE "25" ; LOCATE COMP "usb_clk" SITE "12" ; LOCATE COMP "usb_cs" SITE "11" ; LOCATE COMP "usb_miosi[0]" SITE "22" ; diff --git a/fw/rtl/top.sv b/fw/rtl/top.sv index d00ac60..c23796d 100644 --- a/fw/rtl/top.sv +++ b/fw/rtl/top.sv @@ -51,7 +51,10 @@ module top ( output mcu_miso, // Unused I/O - output n64_video_sync + + output n64_video_sync, + + output [2:0] test_point ); logic clk; @@ -278,4 +281,6 @@ module top ( assign n64_video_sync = 1'bZ; + assign test_point = 3'b000; + endmodule