// rd.c // Author: Josh Holtrop // Created: 12/31/03 // Modified: 01/04/04 byte *rd_readSector(DiskDevice *rd, dword sector, byte *dest) { memcpy((dword)dest, rd->location + (sector * 512), 512); return dest; }