mirror of
https://github.com/dougg3/mac-rom-simm-programmer.git
synced 2024-11-22 06:32:23 +00:00
23 lines
493 B
C
23 lines
493 B
C
/*
|
|
* chip_id.h
|
|
*
|
|
* Created on: Dec 10, 2011
|
|
* Author: Doug
|
|
*/
|
|
|
|
#ifndef CHIP_ID_H_
|
|
#define CHIP_ID_H_
|
|
|
|
#define SST_GREENLIANT 0xBF
|
|
#define GLS29EE010 0x07
|
|
#define GLS29SF020 0x24
|
|
#define GLS29SF040 0x13
|
|
#define SST39SF010A 0xB5
|
|
#define SST39SF020A 0xB6
|
|
#define SST39SF040 0xB7
|
|
|
|
#define AMD 0x01
|
|
#define AM29F040B 0xA4
|
|
|
|
#endif /* CHIP_ID_H_ */
|