dreamcast_usb/maplebus.h

13 lines
306 B
C
Raw Normal View History

2013-10-13 17:01:08 -04:00
#ifndef _maplebus_h__
#define _maplebus_h__
#include <stdint.h>
void maple_init(void);
void maple_sendPacket(unsigned char *data, unsigned char len);
void maple_sendFrame(uint32_t *words, unsigned char nwords);
int maple_receivePacket(unsigned char *data, unsigned int maxlen);
#endif // _maplebus_h__