diff options
author | ZipCPU <dgisselq@ieee.org> | 2018-06-16 12:03:25 -0400 |
---|---|---|
committer | ZipCPU <dgisselq@ieee.org> | 2018-06-16 12:03:25 -0400 |
commit | 41156d188e608804444a81146270fa10c8b4d309 (patch) | |
tree | faf5f18de33d57dbd678b7bafcaf16c1cd76bb82 /common/place_sa.h | |
parent | 6d68af1e622fb960c64b0bf899d1397c2ba69995 (diff) | |
download | nextpnr-41156d188e608804444a81146270fa10c8b4d309.tar.gz nextpnr-41156d188e608804444a81146270fa10c8b4d309.tar.bz2 nextpnr-41156d188e608804444a81146270fa10c8b4d309.zip |
Changed place.h place_sa.h
Diffstat (limited to 'common/place_sa.h')
-rw-r--r-- | common/place_sa.h | 30 |
1 files changed, 30 insertions, 0 deletions
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 <clifford@clifford.at> + * + * 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 |