aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-22 16:19:17 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-22 16:19:17 +0200
commitaa81f9d648e4d699249e6f47e732bcd50b6b08ba (patch)
treee0c056d7c25dc2ac01d83b8c2a00eee702fa4718 /common
parent001c6ceb5661976eb3f0146c1b819a7f2ad8ea7d (diff)
downloadnextpnr-aa81f9d648e4d699249e6f47e732bcd50b6b08ba.tar.gz
nextpnr-aa81f9d648e4d699249e6f47e732bcd50b6b08ba.tar.bz2
nextpnr-aa81f9d648e4d699249e6f47e732bcd50b6b08ba.zip
Switched from clifford@clifford.at to clifford@symbioticeda.com for copyright headers
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common')
-rw-r--r--common/design_utils.cc2
-rw-r--r--common/design_utils.h2
-rw-r--r--common/log.cc2
-rw-r--r--common/log.h2
-rw-r--r--common/nextpnr.cc2
-rw-r--r--common/nextpnr.h2
-rw-r--r--common/place_sa.cc2
-rw-r--r--common/place_sa.h2
-rw-r--r--common/pybindings.cc2
-rw-r--r--common/pybindings.h2
-rw-r--r--common/pycontainers.h2
-rw-r--r--common/route.cc2
-rw-r--r--common/route.h2
13 files changed, 13 insertions, 13 deletions
diff --git a/common/design_utils.cc b/common/design_utils.cc
index 92533fa3..28237b35 100644
--- a/common/design_utils.cc
+++ b/common/design_utils.cc
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
* Copyright (C) 2018 David Shah <david@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
diff --git a/common/design_utils.h b/common/design_utils.h
index d7f0b733..13e4ec1d 100644
--- a/common/design_utils.h
+++ b/common/design_utils.h
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
* Copyright (C) 2018 David Shah <david@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
diff --git a/common/log.cc b/common/log.cc
index 495f83b1..73c764a4 100644
--- a/common/log.cc
+++ b/common/log.cc
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/common/log.h b/common/log.h
index 65b3f178..ca936745 100644
--- a/common/log.h
+++ b/common/log.h
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/common/nextpnr.cc b/common/nextpnr.cc
index b24f66ea..d29d3fec 100644
--- a/common/nextpnr.cc
+++ b/common/nextpnr.cc
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/common/nextpnr.h b/common/nextpnr.h
index 1cf0cbbb..9c6c9d68 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/common/place_sa.cc b/common/place_sa.cc
index 058f0a84..7a876256 100644
--- a/common/place_sa.cc
+++ b/common/place_sa.cc
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
* Copyright (C) 2018 David Shah <david@symbioticeda.com>
*
* Simulated annealing implementation based on arachne-pnr
diff --git a/common/place_sa.h b/common/place_sa.h
index 3c49c031..1fd8c712 100644
--- a/common/place_sa.h
+++ b/common/place_sa.h
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/common/pybindings.cc b/common/pybindings.cc
index 02dc2395..a9c32c1c 100644
--- a/common/pybindings.cc
+++ b/common/pybindings.cc
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
* Copyright (C) 2018 David Shah <david@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
diff --git a/common/pybindings.h b/common/pybindings.h
index 7616c055..4379a1aa 100644
--- a/common/pybindings.h
+++ b/common/pybindings.h
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
* Copyright (C) 2018 David Shah <david@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
diff --git a/common/pycontainers.h b/common/pycontainers.h
index 9160dfb6..06e772a0 100644
--- a/common/pycontainers.h
+++ b/common/pycontainers.h
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
* Copyright (C) 2018 David Shah <david@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
diff --git a/common/route.cc b/common/route.cc
index 29b94b8a..a60f1c41 100644
--- a/common/route.cc
+++ b/common/route.cc
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/common/route.h b/common/route.h
index af0de42e..7a7260f5 100644
--- a/common/route.h
+++ b/common/route.h
@@ -1,7 +1,7 @@
/*
* nextpnr -- Next Generation Place and Route
*
- * Copyright (C) 2018 Clifford Wolf <clifford@clifford.at>
+ * Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above