Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 1 | #include "lpc_aspeed.hpp" |
| 2 | |
| 3 | #include "lpc_interface.hpp" |
| 4 | |
| 5 | #include <cstdint> |
| 6 | #include <memory> |
| 7 | #include <utility> |
| 8 | |
| 9 | namespace blobs |
| 10 | { |
| 11 | |
| 12 | std::unique_ptr<LpcMapperInterface> LpcMapperAspeed::createAspeedMapper() |
| 13 | { |
| 14 | /* NOTE: considered using a joint factory to create one or the other, for |
| 15 | * now, separate factories. |
| 16 | */ |
| 17 | return std::make_unique<LpcMapperAspeed>(); |
| 18 | } |
| 19 | |
| 20 | std::pair<std::uint32_t, std::uint32_t> |
| 21 | LpcMapperAspeed::mapWindow(std::uint32_t address, std::uint32_t length) |
| 22 | { |
| 23 | return std::make_pair(0, 0); |
| 24 | } |
| 25 | |
| 26 | } // namespace blobs |