mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-11-14 05:05:07 -05:00
19 lines
253 B
C
19 lines
253 B
C
#define PROGMEM
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include "../reportdesc.c"
|
|
|
|
|
|
int main(void)
|
|
{
|
|
int i;
|
|
|
|
for (i=0; i<sizeof(gcn64_usbHidReportDescriptor); i++)
|
|
{
|
|
printf("%02x ", gcn64_usbHidReportDescriptor[i]);
|
|
}
|
|
printf("\n");
|
|
|
|
return 0;
|
|
}
|