summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/at45dbxx.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2014-02-20 18:11:00 +0000
committer Aaron Giles <aaron@aarongiles.com>2014-02-20 18:11:00 +0000
commitdd15b719a3c01392a36eb3e5710e6cf0d15b6770 (patch)
tree75954efc8ae4a2073faaacca7298661366b5bf2f /src/emu/machine/at45dbxx.h
parent9fa82ef4c3d247a7279cea7f423697524abdbd6b (diff)
Another round of auto_alloc_array conversions.
Some minor enhancements to dynamic_array, including clearing to specific values and expanding and clearing newly allocated values.
Diffstat (limited to 'src/emu/machine/at45dbxx.h')
-rw-r--r--src/emu/machine/at45dbxx.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/at45dbxx.h b/src/emu/machine/at45dbxx.h
index 9568068a9a6..c90487f6e62 100644
--- a/src/emu/machine/at45dbxx.h
+++ b/src/emu/machine/at45dbxx.h
@@ -68,12 +68,12 @@ protected:
void write_byte(UINT8 data);
// internal state
- UINT8 * m_data;
+ dynamic_buffer m_data;
UINT32 m_size;
UINT8 m_mode;
UINT8 m_status;
- UINT8 * m_buffer1;
- //UINT8 * m_buffer2;
+ dynamic_buffer m_buffer1;
+ //dynamic_buffer m_buffer2;
UINT8 m_si_byte;
UINT8 m_si_bits;
UINT8 m_so_byte;