carthw.h 408 B

1234567891011121314151617181920
  1. /* svp */
  2. #include "svp/ssp16.h"
  3. typedef struct {
  4. unsigned char iram_rom[0x20000]; // IRAM (0-0x7ff) and program ROM (0x800-0x1ffff)
  5. unsigned char dram[0x20000];
  6. ssp1601_t ssp1601;
  7. } svp_t;
  8. extern svp_t *svp;
  9. void PicoSVPInit(void);
  10. void PicoSVPStartup(void);
  11. void PicoSVPMemSetup(void);
  12. /* misc */
  13. void carthw_Xin1_startup(void);
  14. void carthw_realtec_startup(void);
  15. void carthw_radica_startup(void);