Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: azonenberg/openfpga
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b0d5b340804e
Choose a base ref
...
head repository: azonenberg/openfpga
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: da9be6a071f7
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Feb 11, 2017

  1. Copy the full SHA
    717a1fb View commit details
  2. Copy the full SHA
    da9be6a View commit details
Showing with 2 additions and 3 deletions.
  1. +1 −1 src/gp4par/par_main.cpp
  2. +1 −2 tests/greenpak4/CMakeLists.txt
2 changes: 1 addition & 1 deletion src/gp4par/par_main.cpp
Original file line number Diff line number Diff line change
@@ -331,7 +331,7 @@ bool PostPARDRC(PARGraph* netlist, Greenpak4Device* device)

//Check for multiple oscillators with power-down enabled but not the same source
powerdowns.clear();
for(int i=0; i<device->GetDcmpCount(); i++)
for(size_t i=0; i<device->GetDcmpCount(); i++)
{
auto d = device->GetDcmp(i);
if(d->IsUsed())
3 changes: 1 addition & 2 deletions tests/greenpak4/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -69,12 +69,11 @@ function(add_greenpak4_bitstream name part)
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${name}.txt"
COMMAND gp4par "--stdout-only"
--usercode 41
--quiet
--part ${part}
--debug
--output "${CMAKE_CURRENT_BINARY_DIR}/${name}.txt"
--logfile "${CMAKE_CURRENT_BINARY_DIR}/${name}-par.log"
"${CMAKE_CURRENT_BINARY_DIR}/${name}.json"
"--quiet"
DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/${name}.json"
DEPENDS gp4par
COMMENT "Place and route netlist ${CMAKE_CURRENT_BINARY_DIR}/${name}.json"