14 lines
210 B
C
14 lines
210 B
C
// rd.c
|
|
// Author: Josh Holtrop
|
|
// Created: 12/31/03
|
|
|
|
|
|
byte *rd_readSector(DiskDevice *rd, dword sector)
|
|
{
|
|
dword dest = (dword)malloc(512);
|
|
memcpy(dest, rd->location + (sector * 512), 512);
|
|
}
|
|
|
|
|
|
|