1
0
mirror of https://github.com/raphnet/dreamcast_usb synced 2024-12-21 22:58:52 -05:00
dreamcast_usb/maplebus.h
Raphaël Assénat c0ea2489c0 Initial revision
2013-10-13 21:01:08 +00:00

13 lines
306 B
C

#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__