Home
last modified time | relevance | path

Searched refs:targetInterfaces (Results 1 – 2 of 2) sorted by relevance

/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/src/
Drenode_bus.cpp23 if(targetInterfaces.empty()) in addBus()
31 targetInterfaces.push_back(std::unique_ptr<BaseTargetBus>(bus)); in addBus()
43 targetInterfaces[0]->write(width, addr, value); in writeToBus()
55 uint64_t readValue = targetInterfaces[0]->read(width, addr); in readFromBus()
114 for(auto& b : targetInterfaces) in tick()
122 for(auto& b : targetInterfaces) in timeoutTick()
130 for(auto& b : targetInterfaces) in reset()
Drenode_bus.h60 std::vector<std::unique_ptr<BaseTargetBus>> targetInterfaces; variable