summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emu.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2013-08-07 03:18:59 +0000
committer Aaron Giles <aaron@aarongiles.com>2013-08-07 03:18:59 +0000
commit2f1e78d892e218b4f23fc95c89d731ca6e054482 (patch)
treedcaa328a6049494af1dd68634935b61ea42ac14b /src/emu/emu.h
parent1e7273341bfc5ddcb7893f66cd9ffccb038d8c28 (diff)
Moved tilemap_memory into a generic memory_array class, since it is
more generally useful than just in tilemaps. Code is now in memarray.* Converted the Atari RLE motion objects device from a half-assed device into a full-assed device, leveraging the memory_array class.
Diffstat (limited to 'src/emu/emu.h')
-rw-r--r--src/emu/emu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/emu.h b/src/emu/emu.h
index 17e3a2e3779..0f82cef7d0f 100644
--- a/src/emu/emu.h
+++ b/src/emu/emu.h
@@ -69,6 +69,7 @@
// memory and address spaces
#include "memory.h"
#include "addrmap.h"
+#include "memarray.h"
// machine-wide utilities
#include "romload.h"