Files
RomWBW/Source/HBIOS/ch376-native/source-doc/base-drv/hbios-driver-storage.h
Dean Netherton aacf98a82a ch376-native: fixes for windows build
* convert 0x??? hex literals to $??? literals
* More label shortening for windows tasm compatibility
2025-07-20 15:32:08 +10:00

16 lines
328 B
C

#ifndef __HBIOS_DRIVER_STORAGE
#define __HBIOS_DRIVER_STORAGE
#include "usb_state.h"
typedef struct _hbios_storage_device {
uint8_t drive_index;
uint8_t usb_device;
} hbios_storage_device_t;
extern hbios_storage_device_t hbios_usbstore_devs[MAX_NUMBER_OF_DEVICES];
uint8_t find_storage_dev(void);
#endif