Update copyright notices
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Fri, 23 Mar 2012 15:41:30 +0000 (16:41 +0100)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Fri, 23 Mar 2012 15:41:30 +0000 (16:41 +0100)
12 files changed:
README
examples/basic2_sim.py
examples/basic_sim.py
examples/fir.py
examples/memory_sim.py
examples/wb_initiator.py
migen/sim/generic.py
migen/sim/icarus.py
migen/sim/ipc.py
vpi/ipc.c
vpi/ipc.h
vpi/main.c

diff --git a/README b/README
index 223b815efcdaedbc2fa554140930289844105444..0046db955f0ae9068b2ab4db05ed4960314bbe6e 100644 (file)
--- a/README
+++ b/README
@@ -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!"
index f7bb0d02076f1500631238ce95fd95e092b6a15a..a4387f76dded7401b654891d52ea0023eb513c1e 100644 (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
index 900fceded33390f583ce51425e426c547f38fa0b..af00d0df009238f2813f0993b6f236dbf111be99 100644 (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
index 3e6490a51f925283a0c87bafe20b1b4802c6b414..0212fdb23b713a7fbfdffa0af8d4a85e5d5c4d92 100644 (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
 
index 765b0de82f8aca4f10876d5b38d67ae4c4503767..34ae11268dafd1be3443411216236b3bf582b4f0 100644 (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
index 04caecd475033b22d4afb6aced952ca0ebeccbea..d5e38adcd4773ca4be4dcd838d6bd393ff26608a 100644 (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 *
index dddc7e41ced78f94ee8a50f63db01a3079475012..5eb3670e47ee880079d38024223ce7db0573717b 100644 (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 *
index 0661c30714d7f8ab641b3f7dac22ea3e02ac19f4..0c76e14d2f6f0c567cf8acb1bec8fe3ef5c36db7 100644 (file)
@@ -1,3 +1,6 @@
+# Copyright (C) 2012 Vermeer Manufacturing Co.
+# License: GPLv3 with additional permissions (see README).
+
 import subprocess
 import os
 
index f463dcfff706225c3a82e0e50c745b621241eb10..fde8e696748eb99656ecae34cfdcee06fa2b4002 100644 (file)
@@ -1,3 +1,6 @@
+# Copyright (C) 2012 Vermeer Manufacturing Co.
+# License: GPLv3 with additional permissions (see README).
+
 import socket
 import os
 
index c76081d30a5fe72e6107552403bbb1e1436901ea..d41920c763fd31d766ef5ec434f1539c899a04b6 100644 (file)
--- a/vpi/ipc.c
+++ b/vpi/ipc.c
@@ -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>
index baad56479591bee4dfa8e920429237978dfbc157..184858eea8f54270b7bad7d55615a541b39d2b6f 100644 (file)
--- a/vpi/ipc.h
+++ b/vpi/ipc.h
@@ -1,3 +1,8 @@
+/*
+ * Copyright (C) 2012 Vermeer Manufacturing Co.
+ * License: GPLv3 with additional permissions (see README).
+ */
+
 #ifndef __IPC_H
 #define __IPC_H
 
index 324be66da27c770a7b1c216cfd32434e00c2982d..74c13fd4626521dc922246c3a26a1eabb0f07ca5 100644 (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>