Add mapper 174
This commit is contained in:
17
src/boards/latch.h
Normal file
17
src/boards/latch.h
Normal 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 */
|
||||
Reference in New Issue
Block a user