aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/resource/embed.cc
diff options
context:
space:
mode:
authorWilliam D. Jones <thor0505@comcast.net>2020-06-27 17:40:35 -0400
committergatecat <gatecat@ds0.me>2021-02-12 10:36:59 +0000
commit78880e1fdf1721a460c7e4e813f91f427106d3b7 (patch)
tree141a481404383e31cb52dc7d09c630552ad00904 /machxo2/resource/embed.cc
parent539651609cf82ab8e05cac636aee997e831b4d29 (diff)
downloadnextpnr-78880e1fdf1721a460c7e4e813f91f427106d3b7.tar.gz
nextpnr-78880e1fdf1721a460c7e4e813f91f427106d3b7.tar.bz2
nextpnr-78880e1fdf1721a460c7e4e813f91f427106d3b7.zip
machxo2: Remove pybindings unneeded files from examples and update README.md and scripts accordingly. Delete resources directory.
Diffstat (limited to 'machxo2/resource/embed.cc')
-rw-r--r--machxo2/resource/embed.cc24
1 files changed, 0 insertions, 24 deletions
diff --git a/machxo2/resource/embed.cc b/machxo2/resource/embed.cc
deleted file mode 100644
index 24d4815a..00000000
--- a/machxo2/resource/embed.cc
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <cstdio>
-#include <windows.h>
-#include "nextpnr.h"
-#include "resource.h"
-
-NEXTPNR_NAMESPACE_BEGIN
-
-const char *chipdb_blob_1200;
-
-const char *LoadFileInResource(int name, int type, DWORD &size)
-{
- HMODULE handle = ::GetModuleHandle(NULL);
- HRSRC rc = ::FindResource(handle, MAKEINTRESOURCE(name), MAKEINTRESOURCE(type));
- HGLOBAL rcData = ::LoadResource(handle, rc);
- size = ::SizeofResource(handle, rc);
- return static_cast<const char *>(::LockResource(rcData));
-}
-void load_chipdb()
-{
- DWORD size = 0;
- chipdb_blob_1200 = LoadFileInResource(IDR_CHIPDB_1200, BINARYFILE, size);
-}
-
-NEXTPNR_NAMESPACE_END