add CONTRIBUTORS file and add copyright header to all files.

This commit is contained in:
Florent Kermarrec 2019-06-24 10:04:55 +02:00
parent 66956cb88f
commit 9e3b9d84ce
20 changed files with 86 additions and 6 deletions

18
CONTRIBUTORS Normal file
View File

@ -0,0 +1,18 @@
LiteX ecosystem would not exist without the collaborative work of contributors! Here is below the
list of all the LiteScope contributors.
In the source code, each file list the main authors/contributors:
- author(s) that created the initial content.
- contributor(s) that added essential features/improvements.
If you think you should be in this list and don't find yourself, write to florent@enjoy-digital.fr
and we'll fix it!
Contributors:
Copyright (c) 2018 bunnie <bunnie@kosagi.com>
Copyright (c) 2018 Felix Held <felix-github@felixheld.de>
Copyright (c) 2015-2019 Florent Kermarrec <florent@enjoy-digital.fr>
Copyright (c) 2019 kees.jongenburger <kees.jongenburger@gmail.com>
Copyright (c) 2018 Sean Cross <sean@xobs.io>
Copyright (c) 2016 Tim Ansell <mithro@mithis.com>
Copyright (c) 2016 Tim 'mithro' Ansell <mithro@mithis.com>

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# This file is Copyright (c) 2019 kees.jongenburger <kees.jongenburger@gmail.com>
# License: BSD
from migen import *
from litex.boards.platforms import arty

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# This file is Copyright (c) 2015-2019 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
import sys
import os
import argparse

View File

@ -1,3 +1,6 @@
# This file is Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
from migen import *
from migen.genlib.io import CRG

View File

@ -1,3 +1,6 @@
# This file is Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
from migen import *
from migen.genlib.io import CRG

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# This file is Copyright (c) 2018 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
from litex import RemoteClient
from litescope import LiteScopeAnalyzerDriver

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# This file is Copyright (c) 2018 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
from litex import RemoteClient
from litescope import LiteScopeAnalyzerDriver

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# This file is Copyright (c) 2019 kees.jongenburger <kees.jongenburger@gmail.com>
# License: BSD
from litex import RemoteClient
from litescope import LiteScopeAnalyzerDriver

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# This file is Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
from litex import RemoteClient
wb = RemoteClient()

View File

@ -1,5 +1,8 @@
#!/usr/bin/env python3
# This file is Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
import time
from litex import RemoteClient

View File

@ -1,3 +1,8 @@
# This file is Copyright (c) 2016-2018 Florent Kermarrec <florent@enjoy-digital.fr>
# This file is Copyright (c) 2018 bunnie <bunnie@kosagi.com>
# This file is Copyright (c) 2016 Tim 'mithro' Ansell <mithro@mithis.com>
# License: BSD
from migen import *
from migen.genlib.misc import WaitTimer
from migen.genlib.cdc import MultiReg, PulseSynchronizer

View File

@ -1,3 +1,8 @@
# This file is Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
# This file is Copyright (c) 2019 kees.jongenburger <kees.jongenburger@gmail.com>
# This file is Copyright (c) 2018 Sean Cross <sean@xobs.io>
# License: BSD
import os
import sys

View File

@ -1,3 +1,6 @@
# This file is Copyright (c) 2015-2017 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
class LiteScopeIODriver:
def __init__(self, regs, name):
self.regs = regs

View File

@ -1,3 +1,7 @@
# This file is Copyright (c) 2015-2019 Florent Kermarrec <florent@enjoy-digital.fr>
# This file is Copyright (c) 2019 kees.jongenburger <kees.jongenburger@gmail.com>
# License: BSD
def dec2bin(d, width=0):
if d == "x":
return "x"*width

View File

@ -1,3 +1,6 @@
# This file is Copyright (c) 2015 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
from litescope.software.dump.common import Dump, dec2bin

View File

@ -1,3 +1,6 @@
# This file is Copyright (c) 2015 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
from litescope.software.dump.common import Dump

View File

@ -1,3 +1,6 @@
# This file is Copyright (c) 2015-2017 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
import os
import math
import shutil

View File

@ -1,3 +1,6 @@
# This file is Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
from itertools import count
import datetime
from litescope.software.dump.common import Dump, dec2bin

View File

@ -1,3 +1,6 @@
# This file is Copyright (c) 2017-2018 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
import unittest
from migen import *

View File

@ -1,3 +1,6 @@
# This file is Copyright (c) 2017 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
import unittest
import os
from math import cos, sin