| Patrick Venture | 1cde5f9 | 2018-11-07 08:26:47 -0800 | [diff] [blame^] | 1 | #include "pci_handler.hpp" |
| 2 | |||||
| 3 | #include <cstdint> | ||||
| 4 | #include <vector> | ||||
| 5 | |||||
| 6 | namespace blobs | ||||
| 7 | { | ||||
| 8 | |||||
| 9 | std::vector<std::uint8_t> PciDataHandler::copyFrom(std::uint32_t length) | ||||
| 10 | { | ||||
| 11 | /* TODO: implement this. */ | ||||
| 12 | return {}; | ||||
| 13 | } | ||||
| 14 | |||||
| 15 | } // namespace blobs | ||||