yosys-master
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
iopadmap.cc File Reference
#include "kernel/register.h"
#include "kernel/rtlil.h"
#include "kernel/log.h"
+ Include dependency graph for iopadmap.cc:

Go to the source code of this file.

Data Structures

struct  IopadmapPass
 

Functions

USING_YOSYS_NAMESPACE
PRIVATE_NAMESPACE_BEGIN void 
split_portname_pair (std::string &port1, std::string &port2)
 

Variables

IopadmapPass IopadmapPass
 

Function Documentation

USING_YOSYS_NAMESPACE PRIVATE_NAMESPACE_BEGIN void split_portname_pair ( std::string &  port1,
std::string &  port2 
)

Definition at line 27 of file iopadmap.cc.

28 {
29  size_t pos = port1.find_first_of(':');
30  if (pos != std::string::npos) {
31  port2 = port1.substr(pos+1);
32  port1 = port1.substr(0, pos);
33  }
34 }

+ Here is the caller graph for this function:

Variable Documentation