add SPDX License identifier to header and specify file is part of LiteScope.
This commit is contained in:
parent
ec7bd6b47d
commit
2739d5a069
|
@ -1,7 +1,10 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
# This file is Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
# Use:
|
||||
# ./arty.py --build --load
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
# This file is Copyright (c) 2016-2019 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
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2016-2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# Copyright (c) 2018 bunnie <bunnie@kosagi.com>
|
||||
# Copyright (c) 2016 Tim 'mithro' Ansell <mithro@mithis.com>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
from migen import *
|
||||
from migen.genlib.misc import WaitTimer
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
# 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
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# Copyright (c) 2019 kees.jongenburger <kees.jongenburger@gmail.com>
|
||||
# Copyright (c) 2018 Sean Cross <sean@xobs.io>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# This file is Copyright (c) 2015-2017 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2015-2017 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
class LiteScopeIODriver:
|
||||
def __init__(self, regs, name):
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
# 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
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2015-2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# Copyright (c) 2019 kees.jongenburger <kees.jongenburger@gmail.com>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
def dec2bin(d, width=0):
|
||||
if d == "x":
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# This file is Copyright (c) 2015 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2015 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
from litescope.software.dump.common import Dump, dec2bin
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# This file is Copyright (c) 2015 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2015 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
from litescope.software.dump.common import Dump
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# This file is Copyright (c) 2015-2017 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2015-2017 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
import os
|
||||
import math
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# This file is Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2015-2018 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
from itertools import count
|
||||
import datetime
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
# This file is Copyright (c) 2020 Antmicro <www.antmicro.com>
|
||||
# This file is Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2020 Antmicro <www.antmicro.com>
|
||||
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
import re
|
||||
import csv
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# This file is Copyright (c) 2017-2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2017-2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
import unittest
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# This file is Copyright (c) 2017 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2017 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
import unittest
|
||||
import os
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# This file is Copyright (c) 2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# License: BSD
|
||||
#
|
||||
# This file is part of LiteScope.
|
||||
#
|
||||
# Copyright (c) 2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
import unittest
|
||||
import os
|
||||
|
|
Loading…
Reference in New Issue