Update copyright notices

This commit is contained in:
Sebastien Bourdeauducq 2012-03-23 16:41:30 +01:00
parent d47b564fad
commit 081b658e2d
12 changed files with 52 additions and 6 deletions

19
README
View file

@ -54,11 +54,18 @@ presumption that third-party software is unaffected by the copyleft
requirements of the license of Migen.
Unless otherwise noted, Migen's source code is copyright (C) 2011-2012
Sebastien Bourdeauducq. Other authors retain ownership of their
contributions. If a submission can reasonably be considered
independently copyrightable, it's yours and I encourage you to claim it
with appropriate copyright notices. This submission then falls under the
"otherwise noted" category. All submissions must use a license
compatible with the GPL and the exception above.
Sebastien Bourdeauducq.
The simulation extension (as mentioned in the comments at the beginning
of the corresponding source files) is copyright (C) 2012 Vermeer
Manufacturing Co.
Other authors retain ownership of their contributions. If a submission
can reasonably be considered independently copyrightable, it's yours and
I encourage you to claim it with appropriate copyright notices. This
submission then falls under the "otherwise noted" category. All
submissions must use a license compatible with the GPL and the exception
above.
"Electricity! It's like magic!"

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012 Vermeer Manufacturing Co.
# License: GPLv3 with additional permissions (see README).
from migen.fhdl.structure import *
from migen.sim.generic import Simulator, TopLevel
from migen.sim.icarus import Runner

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012 Vermeer Manufacturing Co.
# License: GPLv3 with additional permissions (see README).
from migen.fhdl.structure import *
from migen.sim.generic import Simulator
from migen.sim.icarus import Runner

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012 Vermeer Manufacturing Co.
# License: GPLv3 with additional permissions (see README).
from math import cos, pi
from scipy import signal

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012 Vermeer Manufacturing Co.
# License: GPLv3 with additional permissions (see README).
from migen.fhdl.structure import *
from migen.sim.generic import Simulator
from migen.sim.icarus import Runner

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012 Vermeer Manufacturing Co.
# License: GPLv3 with additional permissions (see README).
from random import Random
from migen.fhdl.structure import *

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012 Vermeer Manufacturing Co.
# License: GPLv3 with additional permissions (see README).
from migen.fhdl.structure import *
from migen.fhdl import verilog
from migen.sim.ipc import *

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012 Vermeer Manufacturing Co.
# License: GPLv3 with additional permissions (see README).
import subprocess
import os

View file

@ -1,3 +1,6 @@
# Copyright (C) 2012 Vermeer Manufacturing Co.
# License: GPLv3 with additional permissions (see README).
import socket
import os

View file

@ -1,3 +1,8 @@
/*
* Copyright (C) 2012 Vermeer Manufacturing Co.
* License: GPLv3 with additional permissions (see README).
*/
#include <assert.h>
#include <sys/types.h>
#include <sys/socket.h>

View file

@ -1,3 +1,8 @@
/*
* Copyright (C) 2012 Vermeer Manufacturing Co.
* License: GPLv3 with additional permissions (see README).
*/
#ifndef __IPC_H
#define __IPC_H

View file

@ -1,3 +1,8 @@
/*
* Copyright (C) 2012 Vermeer Manufacturing Co.
* License: GPLv3 with additional permissions (see README).
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>