1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-11 02:40:10 +00:00
Files
YosysHQ.nextpnr/dummy/pybindings.cc
David Shah f353453a7f Add architecture specific Python defs
Signed-off-by: David Shah <davey1576@gmail.com>
2018-06-02 13:48:28 +02:00

15 lines
390 B
C++

#include "design.h"
#include "chip.h"
#include <utility>
#include <stdexcept>
#include <boost/python.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
#include <boost/python/suite/indexing/map_indexing_suite.hpp>
#include <boost/python/suite/indexing/map_indexing_suite.hpp>
using namespace boost::python;
void arch_wrap_python() {
class_<ChipArgs>("ChipArgs");
}