aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/gfx.h
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-31 14:39:37 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-31 14:39:37 +0200
commitf3127f7dfd33469d29010b611aafb715a33b3be2 (patch)
tree755bb891121b7af47e94b50351789ebf5c878667 /ecp5/gfx.h
parente3a403fa2990602941ce756726488820182aff26 (diff)
downloadnextpnr-f3127f7dfd33469d29010b611aafb715a33b3be2.tar.gz
nextpnr-f3127f7dfd33469d29010b611aafb715a33b3be2.tar.bz2
nextpnr-f3127f7dfd33469d29010b611aafb715a33b3be2.zip
ecp5: Add Bel graphics
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ecp5/gfx.h')
-rw-r--r--ecp5/gfx.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/ecp5/gfx.h b/ecp5/gfx.h
new file mode 100644
index 00000000..0290d2f6
--- /dev/null
+++ b/ecp5/gfx.h
@@ -0,0 +1,35 @@
+/*
+ * nextpnr -- Next Generation Place and Route
+ *
+ * Copyright (C) 2018 David Shah <david@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
+ * 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 ECP5_GFX_H
+#define ECP5_GFX_H
+
+#include "nextpnr.h"
+
+NEXTPNR_NAMESPACE_BEGIN
+
+const float logic_cell_x1 = 0.76;
+const float logic_cell_x2 = 0.95;
+const float logic_cell_y1 = 0.05;
+const float logic_cell_y2 = 0.15;
+const float logic_cell_pitch = 0.125;
+
+NEXTPNR_NAMESPACE_END
+
+#endif