| 8 | class CodeMemory : public AutoObject { |
| 9 | public: |
| 10 | CodeMemory(vaddr_t addr_, u64 size_, |
| 11 | const std::string_view debug_name = "CodeMemory") |
| 12 | : AutoObject(debug_name), addr{addr_}, size{size_} {} |
| 13 | |
| 14 | private: |
| 15 | vaddr_t addr; |
nothing calls this directly
no outgoing calls
no test coverage detected