drv_test.h
496 Bytes
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
USB driver test heder file
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef __USB_DRV_TEST_IPC
#define __USB_DRV_TEST_IPC
#define N64_HEADER 4096
#define MEM_SIZE 0x800000
/* ROM file boot addresss */
#define BOOT_ADDR 0x8
/* N64 rom address to physical address */
#define N64_TO_PHYS(x) ((x) & 0x3FFFFFFF)
int load_rom_into_ddr(char *romfile);
int stimulate_usb(int opts);
#endif