jvm/sega/dreamcast/gdrom/GdromExtentReader.java
2025-01-02 14:30:22 -06:00

11 lines
292 B
Java

package sega.dreamcast.gdrom;
import filesystem.iso9660.ExtentReader;
public class GdromExtentReader implements ExtentReader {
public void readInto(byte[] buf, int extent) {
int starting_address = extent + 150;
GdromProtocol.cdReadPIO(buf, starting_address, 1);
}
}