blob: 5869ab9e704b87ade3d8b00dbc313b8bc7aacc8d [file] [log] [blame]
Patrick Venturee7728422018-11-14 20:16:33 -08001#include "lpc_nuvoton.hpp"
2
3#include "lpc_interface.hpp"
4
5#include <cstdint>
6#include <memory>
7#include <utility>
8
9namespace blobs
10{
11
12std::unique_ptr<LpcMapperInterface> LpcMapperNuvoton::createNuvotonMapper()
13{
14 /* NOTE: Considered making one factory for both types. */
15 return std::make_unique<LpcMapperNuvoton>();
16}
17
18std::pair<std::uint32_t, std::uint32_t>
19 LpcMapperNuvoton::mapWindow(std::uint32_t address, std::uint32_t length)
20{
21 return std::make_pair(0, 0);
22}
23
24} // namespace blobs