mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
Change accessibility of getMemoryBlocks() method of core to public.
Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
parent
9ba78f1fe3
commit
560af2961a
1 changed files with 3 additions and 3 deletions
|
@ -103,13 +103,13 @@ protected:
|
||||||
// Key-type for accessing maps addressTranslations and slaveAddressSpaces
|
// Key-type for accessing maps addressTranslations and slaveAddressSpaces
|
||||||
using MemoryBlockName = std::string;
|
using MemoryBlockName = std::string;
|
||||||
|
|
||||||
// Each IP can declare via this function which memory blocks it requires
|
|
||||||
virtual std::list<MemoryBlockName> getMemoryBlocks() const { return {}; }
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
size_t getBaseaddr() const { return baseaddr; }
|
size_t getBaseaddr() const { return baseaddr; }
|
||||||
const std::string &getInstanceName() const { return id.getName(); }
|
const std::string &getInstanceName() const { return id.getName(); }
|
||||||
|
|
||||||
|
// Each IP can declare via this function which memory blocks it requires
|
||||||
|
virtual std::list<MemoryBlockName> getMemoryBlocks() const { return {}; }
|
||||||
|
|
||||||
// Operators
|
// Operators
|
||||||
|
|
||||||
bool operator==(const Vlnv &otherVlnv) const {
|
bool operator==(const Vlnv &otherVlnv) const {
|
||||||
|
|
Loading…
Add table
Reference in a new issue