1
0
Fork 0
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:
Pascal Bauer 2025-01-30 13:44:24 +01:00 committed by Niklas Eiling
parent 9ba78f1fe3
commit 560af2961a

View file

@ -103,13 +103,13 @@ protected:
// Key-type for accessing maps addressTranslations and slaveAddressSpaces
using MemoryBlockName = std::string;
// Each IP can declare via this function which memory blocks it requires
virtual std::list<MemoryBlockName> getMemoryBlocks() const { return {}; }
public:
size_t getBaseaddr() const { return baseaddr; }
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
bool operator==(const Vlnv &otherVlnv) const {