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: 268258fa7750
Choose a base ref
...
head repository: azonenberg/openfpga
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c7de7aaade1f
Choose a head ref

Commits on Dec 8, 2016

  1. Copy the full SHA
    dc89917 View commit details

Commits on Dec 10, 2016

  1. Copy the full SHA
    e4833f6 View commit details
  2. Copy the full SHA
    706335b View commit details
  3. Now building Latch test

    azonenberg committed Dec 10, 2016
    Copy the full SHA
    c1155d4 View commit details
  4. Copy the full SHA
    573a81b View commit details
  5. Copy the full SHA
    136baee View commit details
  6. Copy the full SHA
    3a120b5 View commit details
  7. Copy the full SHA
    605b2cc View commit details
  8. Copy the full SHA
    043c8ab View commit details
  9. Copy the full SHA
    37edb3c View commit details
  10. Copy the full SHA
    4bd53a3 View commit details
  11. Fixed "return 0" error

    azonenberg committed Dec 10, 2016
    Copy the full SHA
    eba63e6 View commit details
  12. Copy the full SHA
    d91e5b1 View commit details
  13. Copy the full SHA
    5307c1f View commit details
  14. Copy the full SHA
    472a846 View commit details
  15. Copy the full SHA
    564ff2d View commit details
  16. Copy the full SHA
    88a4592 View commit details
  17. Copy the full SHA
    c0769f3 View commit details
  18. greenpak4: Do not hold unused shift registers in reset forever; this …

    …gives a DRC warning in GreenPAK Designer
    azonenberg committed Dec 10, 2016
    Copy the full SHA
    a64a91e View commit details
  19. Copy the full SHA
    70b13ce View commit details
  20. doc: Removed ACMP speed double from missing feature list b/c it's no …

    …longer supported by Silego
    azonenberg committed Dec 10, 2016
    Copy the full SHA
    32590f8 View commit details
  21. Copy the full SHA
    7f005e4 View commit details
  22. Copy the full SHA
    3f133a1 View commit details
  23. greenpak4: Unused shift registers are now held in reset again (proper…

    … idle state for unused shregs)
    azonenberg committed Dec 10, 2016
    Copy the full SHA
    67f5fa3 View commit details

Commits on Dec 11, 2016

  1. Copy the full SHA
    24ffa07 View commit details
  2. Copy the full SHA
    1bd2c60 View commit details
  3. Copy the full SHA
    666bbfd View commit details
  4. Copy the full SHA
    f0815e5 View commit details
  5. Copy the full SHA
    b989b9a View commit details
  6. Copy the full SHA
    00ad109 View commit details
  7. Copy the full SHA
    a2befef View commit details
  8. greenpak4: Implemented DAC driving GP_VREF block for SLG46140V. Updat…

    …ed doc to reflect DAC->VREF now works.
    azonenberg committed Dec 11, 2016
    Copy the full SHA
    43e55c0 View commit details
  9. Copy the full SHA
    574d500 View commit details

Commits on Dec 12, 2016

  1. Copy the full SHA
    9e2c3b6 View commit details
  2. Copy the full SHA
    9f9bf40 View commit details
  3. Copy the full SHA
    bb5438e View commit details
  4. tests: clarified test I/Os

    azonenberg committed Dec 12, 2016
    Copy the full SHA
    639f9b0 View commit details
  5. Copy the full SHA
    c3b22d7 View commit details

Commits on Dec 16, 2016

  1. greenpak4: Initial skeleton work on DCMPs. Not fully implemented but …

    …should be able to load netlists
    azonenberg committed Dec 16, 2016
    Copy the full SHA
    90a5cd5 View commit details
  2. Copy the full SHA
    8834e5f View commit details
  3. greenpak4: Continued work on initial DCMP support. Can now PAR a simp…

    …le design but not generate bitstream.
    azonenberg committed Dec 16, 2016
    Copy the full SHA
    aeb3342 View commit details
  4. Copy the full SHA
    201d742 View commit details
  5. Copy the full SHA
    b6bcf7d View commit details
  6. Copy the full SHA
    4a26671 View commit details
  7. Copy the full SHA
    f2a2c0f View commit details
  8. Copy the full SHA
    c473d7e View commit details
  9. Copy the full SHA
    672c6fe View commit details
  10. Copy the full SHA
    1793288 View commit details
  11. Copy the full SHA
    3acddcd View commit details
  12. Copy the full SHA
    eba17ea View commit details
Showing with 3,818 additions and 221 deletions.
  1. +986 −120 doc/gp4-hdl.tex
  2. +60 −13 src/gp4par/main.cpp
  3. +191 −12 src/gp4par/make_graphs.cpp
  4. +12 −1 src/gp4par/par_main.cpp
  5. +26 −2 src/gp4par/par_reporting.cpp
  6. +7 −0 src/greenpak4/CMakeLists.txt
  7. +7 −0 src/greenpak4/Greenpak4.h
  8. +46 −5 src/greenpak4/Greenpak4Abuf.cpp
  9. +3 −1 src/greenpak4/Greenpak4Abuf.h
  10. +111 −0 src/greenpak4/Greenpak4ClockBuffer.cpp
  11. +58 −0 src/greenpak4/Greenpak4ClockBuffer.h
  12. +5 −1 src/greenpak4/Greenpak4Comparator.cpp
  13. +107 −0 src/greenpak4/Greenpak4DCMPMux.cpp
  14. +55 −0 src/greenpak4/Greenpak4DCMPMux.h
  15. +120 −0 src/greenpak4/Greenpak4DCMPRef.cpp
  16. +55 −0 src/greenpak4/Greenpak4DCMPRef.h
  17. +193 −31 src/greenpak4/Greenpak4Device.cpp
  18. +98 −1 src/greenpak4/Greenpak4Device.h
  19. +298 −0 src/greenpak4/Greenpak4DigitalComparator.cpp
  20. +82 −0 src/greenpak4/Greenpak4DigitalComparator.h
  21. +5 −0 src/greenpak4/Greenpak4EntityOutput.cpp
  22. +4 −0 src/greenpak4/Greenpak4EntityOutput.h
  23. +13 −13 src/greenpak4/Greenpak4Flipflop.cpp
  24. +3 −0 src/greenpak4/Greenpak4Flipflop.h
  25. +77 −0 src/greenpak4/Greenpak4MuxedClockBuffer.cpp
  26. +44 −0 src/greenpak4/Greenpak4MuxedClockBuffer.h
  27. +94 −0 src/greenpak4/Greenpak4PowerDetector.cpp
  28. +53 −0 src/greenpak4/Greenpak4PowerDetector.h
  29. +179 −0 src/greenpak4/Greenpak4SPI.cpp
  30. +64 −0 src/greenpak4/Greenpak4SPI.h
  31. +1 −1 src/greenpak4/Greenpak4ShiftRegister.cpp
  32. +83 −19 src/greenpak4/Greenpak4VoltageReference.cpp
  33. +1 −0 tests/greenpak4/CMakeLists.txt
  34. +3 −1 tests/greenpak4/slg46620v/Bargraph.v
  35. +5 −0 tests/greenpak4/slg46620v/CMakeLists.txt
  36. +121 −0 tests/greenpak4/slg46620v/DCMP.v
  37. +187 −0 tests/greenpak4/slg46620v/Latch.cpp
  38. +61 −0 tests/greenpak4/slg46620v/Latch.v
  39. +131 −0 tests/greenpak4/slg46620v/SPIToDCMP.v
  40. +83 −0 tests/greenpak4/slg46620v/VrefEXT.v
  41. +86 −0 tests/greenpak4/slg46620v/VrefVDD.v
Loading