Rewrite mappers 162,163,164; add mapper 558. Add EEPROM support to 164.

This commit is contained in:
NewRisingSun
2021-05-30 01:08:41 +02:00
parent 597175043b
commit 97ffbc5f83
10 changed files with 442 additions and 200 deletions

10
src/boards/eeprom_93C66.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef _EEPROM_93C66_H
#define _EEPROM_93C66_H
#include "mapinc.h"
extern uint8* eeprom_93C66_storage;
void eeprom_93C66_init ();
uint8 eeprom_93C66_read ();
void eeprom_93C66_write (uint8 CS, uint8 CLK, uint8 DAT);
#endif