blob: 3ccd6f71ea2471c55b7704d487022d928f95226e [file] [log] [blame]
#ifndef BELS_H
#define BELS_H
#include "Chip.hpp"
#include "RoutingGraph.hpp"
namespace Trellis {
namespace Bels {
void add_lc(RoutingGraph &graph, int x, int y, int z);
void add_pio(RoutingGraph &graph, int x, int y, int z);
void add_dcc(RoutingGraph &graph, int x, int y, string side, string z);
void add_bram(RoutingGraph &graph, int x, int y, int z);
}
}
#endif