| 110 | |
| 111 | |
| 112 | NFResult NDSFactory::writePaddingToFile(char paddingChar, const std::string& filePath, uint32_t startAddr, const uint32_t size) |
| 113 | { |
| 114 | std::vector<char> paddingBytes(size, paddingChar); |
| 115 | return writeBytesToFile(paddingBytes, filePath, startAddr, size); |
| 116 | } |
| 117 | |
| 118 | int NDSFactory::getCardSizeInBytes(int cardType) |
| 119 | { |
no outgoing calls
no test coverage detected