Skip to content

Instantly share code, notes, and snippets.

@imrickysu
imrickysu / trip_plan_helper.md
Last active August 29, 2015 14:01
Useful websites in travel planing
@imrickysu
imrickysu / vivado_synth_ooc.tcl
Created May 17, 2014 15:25
prevent Vivado synthesis inserting IO to the netlist
synth_design -mode out_of_context
#For more info, refer to UG901.
@imrickysu
imrickysu / cd_project_directory.tcl
Created May 8, 2014 07:07
change working directory to project root directory
# This command is supported in Vivado.
cd [get_property DIRECTORY [current_project ]]
# Set it in "Customize Commands" can help to improve productivity.
@imrickysu
imrickysu / enable_bitstream_compression.xdc
Last active April 19, 2018 14:04
Vivado enable bitstream compression
# From UG908
# Add the following command to xdc can make it take effect
set_property BITSTREAM.GENERAL.COMPRESS True [current_design]