forked from Dniel97/segatools
amex/sram.c: Handle ABI version ioctl
This commit is contained in:
parent
0b9f81fb2a
commit
bbb7cdf4a5
13
amex/sram.c
13
amex/sram.c
@ -20,12 +20,17 @@
|
||||
#include "util/dprintf.h"
|
||||
#include "util/str.h"
|
||||
|
||||
enum {
|
||||
SRAM_IOCTL_GET_ABI_VERSION = 0x80006000,
|
||||
};
|
||||
|
||||
static HRESULT sram_handle_irp(struct irp *irp);
|
||||
static HRESULT sram_handle_open(struct irp *irp);
|
||||
static HRESULT sram_handle_close(struct irp *irp);
|
||||
static HRESULT sram_handle_ioctl(struct irp *irp);
|
||||
|
||||
static HRESULT sram_ioctl_get_geometry(struct irp *irp);
|
||||
static HRESULT sram_ioctl_get_abi_version(struct irp *irp);
|
||||
|
||||
static struct sram_config sram_config;
|
||||
static HANDLE sram_file;
|
||||
@ -113,6 +118,9 @@ static HRESULT sram_handle_ioctl(struct irp *irp)
|
||||
case IOCTL_DISK_GET_DRIVE_GEOMETRY:
|
||||
return sram_ioctl_get_geometry(irp);
|
||||
|
||||
case SRAM_IOCTL_GET_ABI_VERSION:
|
||||
return sram_ioctl_get_abi_version(irp);
|
||||
|
||||
default:
|
||||
dprintf("SRAM: Unknown ioctl %x, write %i read %i\n",
|
||||
irp->ioctl,
|
||||
@ -145,3 +153,8 @@ static HRESULT sram_ioctl_get_geometry(struct irp *irp)
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
||||
static HRESULT sram_ioctl_get_abi_version(struct irp *irp)
|
||||
{
|
||||
return iobuf_write_le16(&irp->read, 256);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user