This commit is contained in:
2026-06-17 22:42:14 +02:00
parent 0dbbcce227
commit c7d86956f2
11 changed files with 853 additions and 1 deletions

24
build.tcl Normal file
View File

@ -0,0 +1,24 @@
set_device GW5AST-LV138PG484AC1/I0 -name GW5AST-138C
# Get project file from env
set RTL_FILES $::env(RTL_FILES)
# Add all files
puts $RTL_FILES
foreach rtl_file $RTL_FILES {
add_file $rtl_file
}
add_file pins.cst
add_file test.sdc
# Nom du module top
set_option -top_module main
set_option -global_freq 5
# Répertoire de build
set_option -output_base_name build
# Étapes de compilation
run syn
run pnr