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: m-labs/misoc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: afa9b889aee9
Choose a base ref
...
head repository: m-labs/misoc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 154d3d3b04d0
Choose a head ref
  • 11 commits
  • 64 files changed
  • 1 contributor

Commits on Apr 13, 2015

  1. Copy the full SHA
    cd43eaf View commit details
  2. liteeth: pep8 (E302)

    enjoy-digital committed Apr 13, 2015
    Copy the full SHA
    5720638 View commit details
  3. liteeth: pep8 (E201)

    enjoy-digital committed Apr 13, 2015
    Copy the full SHA
    9c52774 View commit details
  4. liteeth: pep8 (E231)

    enjoy-digital committed Apr 13, 2015
    Copy the full SHA
    8dc817d View commit details
  5. liteeth: pep8 (E203)

    enjoy-digital committed Apr 13, 2015
    Copy the full SHA
    726fd3a View commit details
  6. liteeth: pep8 (E401)

    enjoy-digital committed Apr 13, 2015
    Copy the full SHA
    ff2d7f9 View commit details
  7. liteeth: pep8 (E222)

    enjoy-digital committed Apr 13, 2015
    Copy the full SHA
    66ce40d View commit details
  8. liteeth: pep8 (E225)

    enjoy-digital committed Apr 13, 2015
    Copy the full SHA
    a84f126 View commit details
  9. liteeth: pep8 (W292)

    enjoy-digital committed Apr 13, 2015
    Copy the full SHA
    021a5ae View commit details
  10. Copy the full SHA
    45dc492 View commit details
  11. liteeth: pep8 (E265)

    enjoy-digital committed Apr 13, 2015
    Copy the full SHA
    154d3d3 View commit details
Showing with 5,265 additions and 4,981 deletions.
  1. +193 −174 misoclib/com/liteeth/common.py
  2. +10 −8 misoclib/com/liteeth/core/__init__.py
  3. +250 −238 misoclib/com/liteeth/core/arp/__init__.py
  4. +19 −18 misoclib/com/liteeth/core/etherbone/__init__.py
  5. +124 −115 misoclib/com/liteeth/core/etherbone/packet.py
  6. +23 −20 misoclib/com/liteeth/core/etherbone/probe.py
  7. +171 −161 misoclib/com/liteeth/core/etherbone/record.py
  8. +64 −62 misoclib/com/liteeth/core/etherbone/wishbone.py
  9. +134 −122 misoclib/com/liteeth/core/icmp/__init__.py
  10. +173 −164 misoclib/com/liteeth/core/ip/__init__.py
  11. +41 −38 misoclib/com/liteeth/core/ip/checksum.py
  12. +23 −19 misoclib/com/liteeth/core/ip/crossbar.py
  13. +93 −86 misoclib/com/liteeth/core/tty/__init__.py
  14. +119 −110 misoclib/com/liteeth/core/udp/__init__.py
  15. +39 −35 misoclib/com/liteeth/core/udp/crossbar.py
  16. +91 −84 misoclib/com/liteeth/example_designs/make.py
  17. +118 −116 misoclib/com/liteeth/example_designs/targets/base.py
  18. +55 −53 misoclib/com/liteeth/example_designs/targets/etherbone.py
  19. +29 −27 misoclib/com/liteeth/example_designs/targets/tty.py
  20. +51 −49 misoclib/com/liteeth/example_designs/targets/udp.py
  21. +27 −25 misoclib/com/liteeth/example_designs/test/make.py
  22. +55 −53 misoclib/com/liteeth/example_designs/test/test_etherbone.py
  23. +16 −17 misoclib/com/liteeth/example_designs/test/test_la.py
  24. +11 −11 misoclib/com/liteeth/example_designs/test/test_regs.py
  25. +32 −30 misoclib/com/liteeth/example_designs/test/test_tty.py
  26. +68 −63 misoclib/com/liteeth/example_designs/test/test_udp.py
  27. +117 −112 misoclib/com/liteeth/generic/__init__.py
  28. +23 −22 misoclib/com/liteeth/generic/arbiter.py
  29. +21 −20 misoclib/com/liteeth/generic/crossbar.py
  30. +76 −72 misoclib/com/liteeth/generic/depacketizer.py
  31. +38 −35 misoclib/com/liteeth/generic/dispatcher.py
  32. +85 −81 misoclib/com/liteeth/generic/packetizer.py
  33. +26 −25 misoclib/com/liteeth/mac/__init__.py
  34. +35 −29 misoclib/com/liteeth/mac/common.py
  35. +86 −85 misoclib/com/liteeth/mac/core/__init__.py
  36. +267 −261 misoclib/com/liteeth/mac/core/crc.py
  37. +24 −21 misoclib/com/liteeth/mac/core/gap.py
  38. +38 −32 misoclib/com/liteeth/mac/core/last_be.py
  39. +46 −40 misoclib/com/liteeth/mac/core/padding.py
  40. +136 −134 misoclib/com/liteeth/mac/core/preamble.py
  41. +223 −221 misoclib/com/liteeth/mac/frontend/sram.py
  42. +32 −29 misoclib/com/liteeth/mac/frontend/wishbone.py
  43. +21 −20 misoclib/com/liteeth/phy/__init__.py
  44. +81 −71 misoclib/com/liteeth/phy/gmii.py
  45. +87 −77 misoclib/com/liteeth/phy/gmii_mii.py
  46. +24 −20 misoclib/com/liteeth/phy/loopback.py
  47. +89 −78 misoclib/com/liteeth/phy/mii.py
  48. +48 −46 misoclib/com/liteeth/phy/sim.py
  49. +39 −38 misoclib/com/liteeth/test/arp_tb.py
  50. +148 −131 misoclib/com/liteeth/test/common.py
  51. +99 −98 misoclib/com/liteeth/test/etherbone_tb.py
  52. +38 −37 misoclib/com/liteeth/test/icmp_tb.py
  53. +43 −42 misoclib/com/liteeth/test/ip_tb.py
  54. +49 −48 misoclib/com/liteeth/test/mac_core_tb.py
  55. +127 −123 misoclib/com/liteeth/test/mac_wishbone_tb.py
  56. +138 −135 misoclib/com/liteeth/test/model/arp.py
  57. +38 −36 misoclib/com/liteeth/test/model/dumps.py
  58. +337 −328 misoclib/com/liteeth/test/model/etherbone.py
  59. +90 −87 misoclib/com/liteeth/test/model/icmp.py
  60. +127 −122 misoclib/com/liteeth/test/model/ip.py
  61. +139 −134 misoclib/com/liteeth/test/model/mac.py
  62. +49 −45 misoclib/com/liteeth/test/model/phy.py
  63. +105 −102 misoclib/com/liteeth/test/model/udp.py
  64. +47 −46 misoclib/com/liteeth/test/udp_tb.py
Loading