classpath cleanup

This commit is contained in:
Zack Buhman 2025-01-02 14:29:58 -06:00
parent f8833cdcbe
commit d0fc7110b3
111 changed files with 20 additions and 1574 deletions

1
.gitignore vendored
View File

@ -4,6 +4,7 @@
*.gch
*.csv
*.class
*.class.h
*.out
*.elf
*.bin

View File

@ -82,7 +82,6 @@ jvm.iso: boot.bin main.bin zero.bin
/=$(LIB)/ABSTRACT.TXT \
/=$(LIB)/BIBLIOGR.TXT \
/=example/GdromDirectoryRecordHandler.class \
/=example/GdromExtentReader.class \
/=example/GdromTest.class \
/=filesystem/iso9660/ByteParser.class \
/=filesystem/iso9660/DirectoryRecord.class \
@ -100,6 +99,7 @@ jvm.iso: boot.bin main.bin zero.bin
/=sega/dreamcast/gdrom/G1IF.class \
/=sega/dreamcast/gdrom/GdromBits.class \
/=sega/dreamcast/gdrom/Gdrom.class \
/=sega/dreamcast/gdrom/GdromExtentReader.class \
/=sega/dreamcast/gdrom/GdromCommandPacketFormat_cd_read.class \
/=sega/dreamcast/gdrom/GdromCommandPacketFormat.class \
/=sega/dreamcast/gdrom/GdromCommandPacketFormat_get_toc.class \

View File

@ -1,4 +1,3 @@
#include "example/GdromExtentReader.class.h"
#include "example/GdromTest.class.h"
#include "example/GdromDirectoryRecordHandler.class.h"
#include "filesystem/iso9660/ByteParser.class.h"
@ -16,6 +15,7 @@
#include "sega/dreamcast/gdrom/G1IF.class.h"
#include "sega/dreamcast/gdrom/GdromBits.class.h"
#include "sega/dreamcast/gdrom/Gdrom.class.h"
#include "sega/dreamcast/gdrom/GdromExtentReader.class.h"
#include "sega/dreamcast/gdrom/GdromCommandPacketFormat_cd_read.class.h"
#include "sega/dreamcast/gdrom/GdromCommandPacketFormat.class.h"
#include "sega/dreamcast/gdrom/GdromCommandPacketFormat_get_toc.class.h"

View File

@ -1,4 +1,3 @@
(const uint8_t *)&_binary_example_GdromExtentReader_class_start,
(const uint8_t *)&_binary_example_GdromTest_class_start,
(const uint8_t *)&_binary_example_GdromDirectoryRecordHandler_class_start,
(const uint8_t *)&_binary_filesystem_iso9660_ByteParser_class_start,
@ -16,6 +15,7 @@
(const uint8_t *)&_binary_sega_dreamcast_gdrom_G1IF_class_start,
(const uint8_t *)&_binary_sega_dreamcast_gdrom_GdromBits_class_start,
(const uint8_t *)&_binary_sega_dreamcast_gdrom_Gdrom_class_start,
(const uint8_t *)&_binary_sega_dreamcast_gdrom_GdromExtentReader_class_start,
(const uint8_t *)&_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read_class_start,
(const uint8_t *)&_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_class_start,
(const uint8_t *)&_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_get_toc_class_start,

View File

@ -1,5 +1,4 @@
CLASS_PATH = \
example/GdromExtentReader.class.o \
example/GdromTest.class.o \
example/GdromDirectoryRecordHandler.class.o \
filesystem/iso9660/ByteParser.class.o \
@ -17,6 +16,7 @@ CLASS_PATH = \
sega/dreamcast/gdrom/G1IF.class.o \
sega/dreamcast/gdrom/GdromBits.class.o \
sega/dreamcast/gdrom/Gdrom.class.o \
sega/dreamcast/gdrom/GdromExtentReader.class.o \
sega/dreamcast/gdrom/GdromCommandPacketFormat_cd_read.class.o \
sega/dreamcast/gdrom/GdromCommandPacketFormat.class.o \
sega/dreamcast/gdrom/GdromCommandPacketFormat_get_toc.class.o \

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_example_DreamcastVideo_class_start __asm("_binary_example_DreamcastVideo_class_start");
extern uint32_t _binary_example_DreamcastVideo_class_end __asm("_binary_example_DreamcastVideo_class_end");
extern uint32_t _binary_example_DreamcastVideo_class_size __asm("_binary_example_DreamcastVideo_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_example_DreamcastVideo2_class_start __asm("_binary_example_DreamcastVideo2_class_start");
extern uint32_t _binary_example_DreamcastVideo2_class_end __asm("_binary_example_DreamcastVideo2_class_end");
extern uint32_t _binary_example_DreamcastVideo2_class_size __asm("_binary_example_DreamcastVideo2_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_example_GdromDirectoryRecordHandler_class_start __asm("_binary_example_GdromDirectoryRecordHandler_class_start");
extern uint32_t _binary_example_GdromDirectoryRecordHandler_class_end __asm("_binary_example_GdromDirectoryRecordHandler_class_end");
extern uint32_t _binary_example_GdromDirectoryRecordHandler_class_size __asm("_binary_example_GdromDirectoryRecordHandler_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_example_GdromExtentReader_class_start __asm("_binary_example_GdromExtentReader_class_start");
extern uint32_t _binary_example_GdromExtentReader_class_end __asm("_binary_example_GdromExtentReader_class_end");
extern uint32_t _binary_example_GdromExtentReader_class_size __asm("_binary_example_GdromExtentReader_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_example_GdromTest_class_start __asm("_binary_example_GdromTest_class_start");
extern uint32_t _binary_example_GdromTest_class_end __asm("_binary_example_GdromTest_class_end");
extern uint32_t _binary_example_GdromTest_class_size __asm("_binary_example_GdromTest_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,23 +1,14 @@
package example;
import sega.dreamcast.gdrom.GdromExtentReader;
import sega.dreamcast.gdrom.GdromProtocol;
import sega.dreamcast.gdrom.G1IF;
import java.misc.Memory;
import filesystem.iso9660.VolumeParser;
import filesystem.iso9660.ExtentReader;
import filesystem.iso9660.DirectoryRecordHandler;
import filesystem.iso9660.DirectoryRecord;
import jvm.internal.Loader;
class GdromExtentReader implements ExtentReader {
public void readInto(byte[] buf, int extent) {
int starting_address = extent + 150;
System.out.print("starting_address: ");
System.out.println(starting_address);
GdromProtocol.cdReadPIO(buf, starting_address, 1);
}
}
class GdromDirectoryRecordHandler implements DirectoryRecordHandler {
int address;
int[] addresses;
@ -47,7 +38,7 @@ class GdromDirectoryRecordHandler implements DirectoryRecordHandler {
Memory.putU4(G1IF.GDST, 1);
}
public boolean drIsClass(DirectoryRecord dr) {
public boolean isClassExt(DirectoryRecord dr) {
int length = dr.lengthOfFileIdentifier();
if (length < 6)
@ -73,32 +64,21 @@ class GdromDirectoryRecordHandler implements DirectoryRecordHandler {
int extent = dr.locationOfExtent(); // sector number
int length = dr.dataLength(); // bytes
if (drIsClass(dr)) {
System.out.println("class found");
} else {
System.out.println("is not class");
if (!isClassExt(dr)) {
return;
}
// round up to nearest multiple of 2048
length = (length + 2047) & ~(2047);
System.out.print("start G1 DMA: address:");
System.out.print(address);
System.out.print(" length: ");
System.out.println(length);
System.out.println("read dma");
Memory.putU4(G1IF.GDEN, 0);
int sectors = length >> 11; // division by 2048
GdromProtocol.cdReadDMA(extent + 150, sectors);
System.out.println("start dma");
startG1DMA(address, length);
System.out.println("wait gdst");
//System.out.println("wait gdst");
while ((Memory.getU4(G1IF.GDST) & 1) != 0);
System.out.println("transfer complete");

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_example_Vec2_class_start __asm("_binary_example_Vec2_class_start");
extern uint32_t _binary_example_Vec2_class_end __asm("_binary_example_Vec2_class_end");
extern uint32_t _binary_example_Vec2_class_size __asm("_binary_example_Vec2_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_filesystem_iso9660_ByteParser_class_start __asm("_binary_filesystem_iso9660_ByteParser_class_start");
extern uint32_t _binary_filesystem_iso9660_ByteParser_class_end __asm("_binary_filesystem_iso9660_ByteParser_class_end");
extern uint32_t _binary_filesystem_iso9660_ByteParser_class_size __asm("_binary_filesystem_iso9660_ByteParser_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_filesystem_iso9660_DirectoryRecord_class_start __asm("_binary_filesystem_iso9660_DirectoryRecord_class_start");
extern uint32_t _binary_filesystem_iso9660_DirectoryRecord_class_end __asm("_binary_filesystem_iso9660_DirectoryRecord_class_end");
extern uint32_t _binary_filesystem_iso9660_DirectoryRecord_class_size __asm("_binary_filesystem_iso9660_DirectoryRecord_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_filesystem_iso9660_ExtentReader_class_start __asm("_binary_filesystem_iso9660_ExtentReader_class_start");
extern uint32_t _binary_filesystem_iso9660_ExtentReader_class_end __asm("_binary_filesystem_iso9660_ExtentReader_class_end");
extern uint32_t _binary_filesystem_iso9660_ExtentReader_class_size __asm("_binary_filesystem_iso9660_ExtentReader_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_filesystem_iso9660_PrimaryVolumeDescriptor_class_start __asm("_binary_filesystem_iso9660_PrimaryVolumeDescriptor_class_start");
extern uint32_t _binary_filesystem_iso9660_PrimaryVolumeDescriptor_class_end __asm("_binary_filesystem_iso9660_PrimaryVolumeDescriptor_class_end");
extern uint32_t _binary_filesystem_iso9660_PrimaryVolumeDescriptor_class_size __asm("_binary_filesystem_iso9660_PrimaryVolumeDescriptor_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_filesystem_iso9660_VolumeParser_class_start __asm("_binary_filesystem_iso9660_VolumeParser_class_start");
extern uint32_t _binary_filesystem_iso9660_VolumeParser_class_end __asm("_binary_filesystem_iso9660_VolumeParser_class_end");
extern uint32_t _binary_filesystem_iso9660_VolumeParser_class_size __asm("_binary_filesystem_iso9660_VolumeParser_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -71,7 +71,6 @@ function classpath_h () {
}
declare -a boot_classes=(
example/GdromExtentReader.class
example/GdromTest.class
example/GdromDirectoryRecordHandler.class
filesystem/iso9660/ByteParser.class
@ -89,6 +88,7 @@ declare -a boot_classes=(
sega/dreamcast/gdrom/G1IF.class
sega/dreamcast/gdrom/GdromBits.class
sega/dreamcast/gdrom/Gdrom.class
sega/dreamcast/gdrom/GdromExtentReader.class
sega/dreamcast/gdrom/GdromCommandPacketFormat_cd_read.class
sega/dreamcast/gdrom/GdromCommandPacketFormat.class
sega/dreamcast/gdrom/GdromCommandPacketFormat_get_toc.class

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_io_PrintStream_class_start __asm("_binary_java_io_PrintStream_class_start");
extern uint32_t _binary_java_io_PrintStream_class_end __asm("_binary_java_io_PrintStream_class_end");
extern uint32_t _binary_java_io_PrintStream_class_size __asm("_binary_java_io_PrintStream_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_Boolean_class_start __asm("_binary_java_lang_Boolean_class_start");
extern uint32_t _binary_java_lang_Boolean_class_end __asm("_binary_java_lang_Boolean_class_end");
extern uint32_t _binary_java_lang_Boolean_class_size __asm("_binary_java_lang_Boolean_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_Byte_class_start __asm("_binary_java_lang_Byte_class_start");
extern uint32_t _binary_java_lang_Byte_class_end __asm("_binary_java_lang_Byte_class_end");
extern uint32_t _binary_java_lang_Byte_class_size __asm("_binary_java_lang_Byte_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_Character_class_start __asm("_binary_java_lang_Character_class_start");
extern uint32_t _binary_java_lang_Character_class_end __asm("_binary_java_lang_Character_class_end");
extern uint32_t _binary_java_lang_Character_class_size __asm("_binary_java_lang_Character_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_DecimalDigits_class_start __asm("_binary_java_lang_DecimalDigits_class_start");
extern uint32_t _binary_java_lang_DecimalDigits_class_end __asm("_binary_java_lang_DecimalDigits_class_end");
extern uint32_t _binary_java_lang_DecimalDigits_class_size __asm("_binary_java_lang_DecimalDigits_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
extern uint32_t _binary_java_lang_Double_class_start __asm("_binary_java_lang_Double_class_start");
extern uint32_t _binary_java_lang_Double_class_end __asm("_binary_java_lang_Double_class_end");
extern uint32_t _binary_java_lang_Double_class_size __asm("_binary_java_lang_Double_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
extern uint32_t _binary_java_lang_Float_class_start __asm("_binary_java_lang_Float_class_start");
extern uint32_t _binary_java_lang_Float_class_end __asm("_binary_java_lang_Float_class_end");
extern uint32_t _binary_java_lang_Float_class_size __asm("_binary_java_lang_Float_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_Integer_class_start __asm("_binary_java_lang_Integer_class_start");
extern uint32_t _binary_java_lang_Integer_class_end __asm("_binary_java_lang_Integer_class_end");
extern uint32_t _binary_java_lang_Integer_class_size __asm("_binary_java_lang_Integer_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
extern uint32_t _binary_java_lang_Long_class_start __asm("_binary_java_lang_Long_class_start");
extern uint32_t _binary_java_lang_Long_class_end __asm("_binary_java_lang_Long_class_end");
extern uint32_t _binary_java_lang_Long_class_size __asm("_binary_java_lang_Long_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_Math_class_start __asm("_binary_java_lang_Math_class_start");
extern uint32_t _binary_java_lang_Math_class_end __asm("_binary_java_lang_Math_class_end");
extern uint32_t _binary_java_lang_Math_class_size __asm("_binary_java_lang_Math_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_Object_class_start __asm("_binary_java_lang_Object_class_start");
extern uint32_t _binary_java_lang_Object_class_end __asm("_binary_java_lang_Object_class_end");
extern uint32_t _binary_java_lang_Object_class_size __asm("_binary_java_lang_Object_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_Short_class_start __asm("_binary_java_lang_Short_class_start");
extern uint32_t _binary_java_lang_Short_class_end __asm("_binary_java_lang_Short_class_end");
extern uint32_t _binary_java_lang_Short_class_size __asm("_binary_java_lang_Short_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_String_class_start __asm("_binary_java_lang_String_class_start");
extern uint32_t _binary_java_lang_String_class_end __asm("_binary_java_lang_String_class_end");
extern uint32_t _binary_java_lang_String_class_size __asm("_binary_java_lang_String_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_lang_System_class_start __asm("_binary_java_lang_System_class_start");
extern uint32_t _binary_java_lang_System_class_end __asm("_binary_java_lang_System_class_end");
extern uint32_t _binary_java_lang_System_class_size __asm("_binary_java_lang_System_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_misc_Memory_class_start __asm("_binary_java_misc_Memory_class_start");
extern uint32_t _binary_java_misc_Memory_class_end __asm("_binary_java_misc_Memory_class_end");
extern uint32_t _binary_java_misc_Memory_class_size __asm("_binary_java_misc_Memory_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_misc_Resource_class_start __asm("_binary_java_misc_Resource_class_start");
extern uint32_t _binary_java_misc_Resource_class_end __asm("_binary_java_misc_Resource_class_end");
extern uint32_t _binary_java_misc_Resource_class_size __asm("_binary_java_misc_Resource_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_nio_Buffer_class_start __asm("_binary_java_nio_Buffer_class_start");
extern uint32_t _binary_java_nio_Buffer_class_end __asm("_binary_java_nio_Buffer_class_end");
extern uint32_t _binary_java_nio_Buffer_class_size __asm("_binary_java_nio_Buffer_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_nio_ByteBuffer_class_start __asm("_binary_java_nio_ByteBuffer_class_start");
extern uint32_t _binary_java_nio_ByteBuffer_class_end __asm("_binary_java_nio_ByteBuffer_class_end");
extern uint32_t _binary_java_nio_ByteBuffer_class_size __asm("_binary_java_nio_ByteBuffer_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_java_nio_ByteOrder_class_start __asm("_binary_java_nio_ByteOrder_class_start");
extern uint32_t _binary_java_nio_ByteOrder_class_end __asm("_binary_java_nio_ByteOrder_class_end");
extern uint32_t _binary_java_nio_ByteOrder_class_size __asm("_binary_java_nio_ByteOrder_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_jvm_internal_Loader_class_start __asm("_binary_jvm_internal_Loader_class_start");
extern uint32_t _binary_jvm_internal_Loader_class_end __asm("_binary_jvm_internal_Loader_class_end");
extern uint32_t _binary_jvm_internal_Loader_class_size __asm("_binary_jvm_internal_Loader_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_model_FacePTN_class_start __asm("_binary_model_FacePTN_class_start");
extern uint32_t _binary_model_FacePTN_class_end __asm("_binary_model_FacePTN_class_end");
extern uint32_t _binary_model_FacePTN_class_size __asm("_binary_model_FacePTN_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_model_ModelObject_class_start __asm("_binary_model_ModelObject_class_start");
extern uint32_t _binary_model_ModelObject_class_end __asm("_binary_model_ModelObject_class_end");
extern uint32_t _binary_model_ModelObject_class_size __asm("_binary_model_ModelObject_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_model_UntitledModel_class_start __asm("_binary_model_UntitledModel_class_start");
extern uint32_t _binary_model_UntitledModel_class_end __asm("_binary_model_UntitledModel_class_end");
extern uint32_t _binary_model_UntitledModel_class_size __asm("_binary_model_UntitledModel_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_model_Vec2_class_start __asm("_binary_model_Vec2_class_start");
extern uint32_t _binary_model_Vec2_class_end __asm("_binary_model_Vec2_class_end");
extern uint32_t _binary_model_Vec2_class_size __asm("_binary_model_Vec2_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_model_Vec3_class_start __asm("_binary_model_Vec3_class_start");
extern uint32_t _binary_model_Vec3_class_end __asm("_binary_model_Vec3_class_end");
extern uint32_t _binary_model_Vec3_class_size __asm("_binary_model_Vec3_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_MemoryMap_class_start __asm("_binary_sega_dreamcast_MemoryMap_class_start");
extern uint32_t _binary_sega_dreamcast_MemoryMap_class_end __asm("_binary_sega_dreamcast_MemoryMap_class_end");
extern uint32_t _binary_sega_dreamcast_MemoryMap_class_size __asm("_binary_sega_dreamcast_MemoryMap_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_g2_if_G2IF_class_start __asm("_binary_sega_dreamcast_g2_if_G2IF_class_start");
extern uint32_t _binary_sega_dreamcast_g2_if_G2IF_class_end __asm("_binary_sega_dreamcast_g2_if_G2IF_class_end");
extern uint32_t _binary_sega_dreamcast_g2_if_G2IF_class_size __asm("_binary_sega_dreamcast_g2_if_G2IF_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_G1IF_class_start __asm("_binary_sega_dreamcast_gdrom_G1IF_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_G1IF_class_end __asm("_binary_sega_dreamcast_gdrom_G1IF_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_G1IF_class_size __asm("_binary_sega_dreamcast_gdrom_G1IF_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_Gdrom_class_start __asm("_binary_sega_dreamcast_gdrom_Gdrom_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_Gdrom_class_end __asm("_binary_sega_dreamcast_gdrom_Gdrom_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_Gdrom_class_size __asm("_binary_sega_dreamcast_gdrom_Gdrom_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromBits_class_start __asm("_binary_sega_dreamcast_gdrom_GdromBits_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromBits_class_end __asm("_binary_sega_dreamcast_gdrom_GdromBits_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromBits_class_size __asm("_binary_sega_dreamcast_gdrom_GdromBits_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_open_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_open_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_open_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_open_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_open_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_open_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_play_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_play_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_play_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_play_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_play_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_play_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read2_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read2_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read2_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read2_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read2_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_read2_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scan_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scan_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scan_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scan_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scan_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scan_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scd_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scd_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scd_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scd_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scd_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_scd_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_seek_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_seek_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_seek_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_seek_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_seek_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_cd_seek_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_get_toc_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_get_toc_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_get_toc_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_get_toc_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_get_toc_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_get_toc_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_error_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_error_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_error_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_error_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_error_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_error_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_mode_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_mode_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_mode_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_mode_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_mode_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_mode_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_ses_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_ses_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_ses_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_ses_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_ses_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_ses_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_stat_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_stat_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_stat_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_stat_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_stat_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_req_stat_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_set_mode_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_set_mode_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_set_mode_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_set_mode_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_set_mode_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_set_mode_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_test_unit_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_test_unit_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_test_unit_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_test_unit_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_test_unit_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketFormat_test_unit_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketInterface_class_start __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketInterface_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketInterface_class_end __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketInterface_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromCommandPacketInterface_class_size __asm("_binary_sega_dreamcast_gdrom_GdromCommandPacketInterface_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -0,0 +1,10 @@
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);
}
}

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_gdrom_GdromProtocol_class_start __asm("_binary_sega_dreamcast_gdrom_GdromProtocol_class_start");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromProtocol_class_end __asm("_binary_sega_dreamcast_gdrom_GdromProtocol_class_end");
extern uint32_t _binary_sega_dreamcast_gdrom_GdromProtocol_class_size __asm("_binary_sega_dreamcast_gdrom_GdromProtocol_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_Background_class_start __asm("_binary_sega_dreamcast_holly_Background_class_start");
extern uint32_t _binary_sega_dreamcast_holly_Background_class_end __asm("_binary_sega_dreamcast_holly_Background_class_end");
extern uint32_t _binary_sega_dreamcast_holly_Background_class_size __asm("_binary_sega_dreamcast_holly_Background_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_Core_class_start __asm("_binary_sega_dreamcast_holly_Core_class_start");
extern uint32_t _binary_sega_dreamcast_holly_Core_class_end __asm("_binary_sega_dreamcast_holly_Core_class_end");
extern uint32_t _binary_sega_dreamcast_holly_Core_class_size __asm("_binary_sega_dreamcast_holly_Core_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_CoreBits_class_start __asm("_binary_sega_dreamcast_holly_CoreBits_class_start");
extern uint32_t _binary_sega_dreamcast_holly_CoreBits_class_end __asm("_binary_sega_dreamcast_holly_CoreBits_class_end");
extern uint32_t _binary_sega_dreamcast_holly_CoreBits_class_size __asm("_binary_sega_dreamcast_holly_CoreBits_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_Holly_class_start __asm("_binary_sega_dreamcast_holly_Holly_class_start");
extern uint32_t _binary_sega_dreamcast_holly_Holly_class_end __asm("_binary_sega_dreamcast_holly_Holly_class_end");
extern uint32_t _binary_sega_dreamcast_holly_Holly_class_size __asm("_binary_sega_dreamcast_holly_Holly_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_ISPTSP_class_start __asm("_binary_sega_dreamcast_holly_ISPTSP_class_start");
extern uint32_t _binary_sega_dreamcast_holly_ISPTSP_class_end __asm("_binary_sega_dreamcast_holly_ISPTSP_class_end");
extern uint32_t _binary_sega_dreamcast_holly_ISPTSP_class_size __asm("_binary_sega_dreamcast_holly_ISPTSP_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_RegionArray_class_start __asm("_binary_sega_dreamcast_holly_RegionArray_class_start");
extern uint32_t _binary_sega_dreamcast_holly_RegionArray_class_end __asm("_binary_sega_dreamcast_holly_RegionArray_class_end");
extern uint32_t _binary_sega_dreamcast_holly_RegionArray_class_size __asm("_binary_sega_dreamcast_holly_RegionArray_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_RegionArray_OPBSize_class_start __asm("_binary_sega_dreamcast_holly_RegionArray_OPBSize_class_start");
extern uint32_t _binary_sega_dreamcast_holly_RegionArray_OPBSize_class_end __asm("_binary_sega_dreamcast_holly_RegionArray_OPBSize_class_end");
extern uint32_t _binary_sega_dreamcast_holly_RegionArray_OPBSize_class_size __asm("_binary_sega_dreamcast_holly_RegionArray_OPBSize_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TABits_class_start __asm("_binary_sega_dreamcast_holly_TABits_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TABits_class_end __asm("_binary_sega_dreamcast_holly_TABits_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TABits_class_size __asm("_binary_sega_dreamcast_holly_TABits_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAFIFOPolygonConverter_class_start __asm("_binary_sega_dreamcast_holly_TAFIFOPolygonConverter_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAFIFOPolygonConverter_class_end __asm("_binary_sega_dreamcast_holly_TAFIFOPolygonConverter_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAFIFOPolygonConverter_class_size __asm("_binary_sega_dreamcast_holly_TAFIFOPolygonConverter_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_end_of_list_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_end_of_list_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_end_of_list_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_end_of_list_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_end_of_list_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_end_of_list_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_modifier_volume_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_modifier_volume_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_modifier_volume_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_modifier_volume_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_modifier_volume_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_modifier_volume_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_object_list_set_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_object_list_set_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_object_list_set_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_object_list_set_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_object_list_set_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_object_list_set_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_0_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_0_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_0_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_0_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_0_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_0_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_1_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_1_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_1_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_1_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_1_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_1_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_2_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_2_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_2_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_2_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_2_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_2_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_3_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_3_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_3_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_3_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_3_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_3_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_4_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_4_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_4_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_4_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_4_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_polygon_type_4_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_sprite_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_sprite_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_sprite_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_sprite_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_sprite_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_sprite_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_user_tile_clip_class_start __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_user_tile_clip_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_user_tile_clip_class_end __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_user_tile_clip_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAGlobalParameter_user_tile_clip_class_size __asm("_binary_sega_dreamcast_holly_TAGlobalParameter_user_tile_clip_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAParameter_class_start __asm("_binary_sega_dreamcast_holly_TAParameter_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAParameter_class_end __asm("_binary_sega_dreamcast_holly_TAParameter_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAParameter_class_size __asm("_binary_sega_dreamcast_holly_TAParameter_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_modifier_volume_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_modifier_volume_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_modifier_volume_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_modifier_volume_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_modifier_volume_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_modifier_volume_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_0_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_0_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_0_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_0_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_0_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_0_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_1_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_1_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_1_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_1_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_1_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_1_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_10_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_10_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_10_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_10_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_10_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_10_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_11_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_11_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_11_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_11_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_11_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_11_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_12_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_12_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_12_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_12_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_12_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_12_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_13_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_13_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_13_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_13_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_13_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_13_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_14_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_14_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_14_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_14_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_14_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_14_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_2_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_2_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_2_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_2_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_2_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_2_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_3_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_3_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_3_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_3_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_3_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_3_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_4_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_4_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_4_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_4_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_4_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_4_class_size");
#ifdef __cplusplus
}
#endif

View File

@ -1,15 +0,0 @@
#pragma once
#include <stdint.h>
#ifdef __cplusplus
extern C {
#endif
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_5_class_start __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_5_class_start");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_5_class_end __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_5_class_end");
extern uint32_t _binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_5_class_size __asm("_binary_sega_dreamcast_holly_TAVertexParameter_polygon_type_5_class_size");
#ifdef __cplusplus
}
#endif

Some files were not shown because too many files have changed in this diff Show More