From 41156d188e608804444a81146270fa10c8b4d309 Mon Sep 17 00:00:00 2001 From: ZipCPU Date: Sat, 16 Jun 2018 12:03:25 -0400 Subject: Changed place.h place_sa.h --- common/place.h | 30 ------------------------------ common/place_sa.h | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 30 deletions(-) delete mode 100644 common/place.h create mode 100644 common/place_sa.h (limited to 'common') diff --git a/common/place.h b/common/place.h deleted file mode 100644 index f320111e..00000000 --- a/common/place.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * nextpnr -- Next Generation Place and Route - * - * Copyright (C) 2018 Clifford Wolf - * - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - * - */ -#ifndef PLACE_H -#define PLACE_H - -#include "nextpnr.h" - -NEXTPNR_NAMESPACE_BEGIN - -extern void place_design_sa(Design *design); - -NEXTPNR_NAMESPACE_END - -#endif // PLACE_H diff --git a/common/place_sa.h b/common/place_sa.h new file mode 100644 index 00000000..f320111e --- /dev/null +++ b/common/place_sa.h @@ -0,0 +1,30 @@ +/* + * nextpnr -- Next Generation Place and Route + * + * Copyright (C) 2018 Clifford Wolf + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * + */ +#ifndef PLACE_H +#define PLACE_H + +#include "nextpnr.h" + +NEXTPNR_NAMESPACE_BEGIN + +extern void place_design_sa(Design *design); + +NEXTPNR_NAMESPACE_END + +#endif // PLACE_H -- cgit v1.2.3 From 218c4cd740bd88f52c0162356a440929e2f4815f Mon Sep 17 00:00:00 2001 From: ZipCPU Date: Sat, 16 Jun 2018 12:09:51 -0400 Subject: Renamed place.h to place_sa.h in place_sa.cc Signed-off-by: ZipCPU --- common/place_sa.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common') diff --git a/common/place_sa.cc b/common/place_sa.cc index a6d3040f..1635d97f 100644 --- a/common/place_sa.cc +++ b/common/place_sa.cc @@ -17,7 +17,7 @@ * */ -#include "place.h" +#include "place_sa.h" #include #include #include -- cgit v1.2.3