mirror of https://github.com/parasyte/alt64
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
397 B
29 lines
397 B
/* |
|
* File: disk.h |
|
* Author: krik |
|
* |
|
* Created on 2 Èþíü 2011 ã., 4:07 |
|
*/ |
|
|
|
#ifndef _DISK_H |
|
#define _DISK_H |
|
|
|
#include "types.h" |
|
|
|
u8 diskGetInterface(); |
|
u8 diskInit(); |
|
u8 diskRead(u32 saddr, void *buff, u16 slen); |
|
u8 diskWrite(u32 saddr, u8 *buff, u16 slen); |
|
void diskSetInterface(u32 interface); |
|
|
|
|
|
|
|
#define WAIT 1024 |
|
|
|
#define DISK_IFACE_SPI 0 |
|
#define DISK_IFACE_SD 1 |
|
|
|
|
|
|
|
#endif /* _DISK_H */ |
|
|
|
|