Update README.md

Replace integer division with float multiplication

Signed-off-by: Donn <me@donn.website>
This commit is contained in:
ntdesmond
2021-06-27 10:18:52 +03:00
committed by Donn
parent 3c0f2fd0e5
commit 71c064fbf2

View File

@@ -78,7 +78,7 @@ The script can be used in two ways
```
FP_CORE_UTIL=(40,50)
PL_TARGET_DENSITY=(FP_CORE_UTIL/100-0.1,0.4)
PL_TARGET_DENSITY=(FP_CORE_UTIL*0.01-0.1,0.4)
extra="
set ::env(SYNTH_MAX_FANOUT) { $::env(FP_ASPECT_RATIO) * 5 }
@@ -91,7 +91,7 @@ The script can be used in two ways
```
FP_CORE_UTIL=(40,50)
PL_TARGET_DENSITY=(FP_CORE_UTIL/100-0.1,0.4)
PL_TARGET_DENSITY=(FP_CORE_UTIL*0.01-0.1,0.4)
extra="
set ::env(SYNTH_MAX_FANOUT) { $::env(FP_ASPECT_RATIO) * 5 }