mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 23:32:28 +00:00
31 lines
620 B
C++
31 lines
620 B
C++
|
//
|
||
|
// AddressMapper.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 30/12/2017.
|
||
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef AddressMapper_hpp
|
||
|
#define AddressMapper_hpp
|
||
|
|
||
|
#include <functional>
|
||
|
|
||
|
namespace StaticAnalyser {
|
||
|
namespace Disassembler {
|
||
|
|
||
|
/*!
|
||
|
Provides an address mapper that relocates a chunk of memory so that it starts at
|
||
|
address @c start_address.
|
||
|
*/
|
||
|
template <typename T> std::function<std::size_t(T)> OffsetMapper(T start_address) {
|
||
|
return [start_address](T argument) {
|
||
|
return static_cast<std::size_t>(argument - start_address);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif /* AddressMapper_hpp */
|