| 230 | |
| 231 | public: |
| 232 | DRESULT diskRead(BYTE* buffer, LBA_t sector, UINT count) |
| 233 | { |
| 234 | auto bytes = getLogicalSector(sector, count); |
| 235 | memcpy(buffer, bytes.cbegin(), bytes.size()); |
| 236 | return RES_OK; |
| 237 | } |
| 238 | |
| 239 | DRESULT diskWrite(const BYTE* buffer, LBA_t sector, UINT count) |
| 240 | { |