Genesis-Plus-GX/source/cart_hw/svp/svp.h

34 lines
775 B
C
Raw Normal View History

2008-08-07 14:26:07 +02:00
/* The SVP chip emulator
(c) Copyright 2008, Grazvydas "notaz" Ignotas
Free for non-commercial use.
For commercial use, separate licencing terms must be obtained.
*/
/* SVP Controller */
/* modified for Genesis Plus GCN port (eke-eke) */
#ifndef _SVP_H_
#define _SVP_H_
#include "shared.h"
#include "ssp16.h"
typedef struct {
unsigned char iram_rom[0x20000]; // IRAM (0-0x7ff) and program ROM (0x800-0x1ffff)
unsigned char dram[0x20000];
ssp1601_t ssp1601;
} svp_t;
extern svp_t *svp;
extern uint16 SVP_cycles;
extern void svp_init(void);
extern void svp_reset(void);
2008-12-04 20:32:22 +01:00
extern void svp_write_dram(uint32 address, uint32 data);
extern uint32 svp_read_cell_1(uint32 address);
extern uint32 svp_read_cell_2(uint32 address);
2008-08-07 14:26:07 +02:00
#endif