#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 |