summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/intelfsh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/intelfsh.h')
-rw-r--r--src/devices/machine/intelfsh.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/devices/machine/intelfsh.h b/src/devices/machine/intelfsh.h
index 2a054b8fb53..2d459f59eed 100644
--- a/src/devices/machine/intelfsh.h
+++ b/src/devices/machine/intelfsh.h
@@ -44,8 +44,9 @@ public:
FLASH_SHARP_LH28F400 = 0x1000,
FLASH_INTEL_E28F400B,
FLASH_INTEL_TE28F160,
+ FLASH_SHARP_LH28F160S3,
FLASH_INTEL_TE28F320,
- FLASH_SHARP_UNK128MBIT,
+ FLASH_SHARP_LH28F320BF,
FLASH_INTEL_28F320J3D,
FLASH_INTEL_28F320J5,
FLASH_SST_39VF400A,
@@ -287,6 +288,12 @@ public:
intel_te28f160_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
};
+class sharp_lh28f160s3_device : public intelfsh16_device
+{
+public:
+ sharp_lh28f160s3_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
+};
+
class intel_te28f320_device : public intelfsh16_device
{
public:
@@ -299,10 +306,10 @@ public:
intel_e28f400b_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
};
-class sharp_unk128mbit_device : public intelfsh16_device
+class sharp_lh28f320bf_device : public intelfsh16_device
{
public:
- sharp_unk128mbit_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
+ sharp_lh28f320bf_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock = 0);
};
class intel_28f320j3d_device : public intelfsh16_device
@@ -359,8 +366,9 @@ DECLARE_DEVICE_TYPE(SST_49LF020, sst_49lf020_device)
DECLARE_DEVICE_TYPE(SHARP_LH28F400, sharp_lh28f400_device)
DECLARE_DEVICE_TYPE(INTEL_E28F008SA, intel_e28f008sa_device)
DECLARE_DEVICE_TYPE(INTEL_TE28F160, intel_te28f160_device)
+DECLARE_DEVICE_TYPE(SHARP_LH28F160S3, sharp_lh28f160s3_device)
DECLARE_DEVICE_TYPE(INTEL_TE28F320, intel_te28f320_device)
-DECLARE_DEVICE_TYPE(SHARP_UNK128MBIT, sharp_unk128mbit_device)
+DECLARE_DEVICE_TYPE(SHARP_LH28F320BF, sharp_lh28f320bf_device)
DECLARE_DEVICE_TYPE(INTEL_28F320J3D, intel_28f320j3d_device)
DECLARE_DEVICE_TYPE(INTEL_28F320J5, intel_28f320j5_device)
DECLARE_DEVICE_TYPE(SST_39VF400A, sst_39vf400a_device)