Add mapper 174

This commit is contained in:
libretroadmin
2024-05-22 14:55:21 +02:00
parent aebea87836
commit 431c9d9ff4
5 changed files with 154 additions and 1 deletions

17
src/boards/latch.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef _FCEU_LATCH_H
#define _FCEU_LATCH_H
typedef struct {
uint16 addr;
uint8 data;
} LATCH;
extern LATCH latch;
void Latch_Init(CartInfo *info, void (*proc)(void), readfunc func, uint8 wram, uint8 busc);
void LatchPower(void);
void LatchClose(void);
void LatchWrite(uint32 A, uint8 V);
void LatchHardReset();
#endif /* _FCEU_LATCH_H */