diff options
author | Benedikt Böhm <bb@xnull.de> | 2009-05-18 20:53:42 +0200 |
---|---|---|
committer | Benedikt Böhm <bb@xnull.de> | 2009-05-18 20:53:42 +0200 |
commit | 49f510d2d60129526832bfcd9c0f4049962bc80e (patch) | |
tree | 2828b773c75bdbc4014a3421c8046778a1a2b11b /src/emu/mem.h | |
parent | 144258f0196b69cbdd2f29bd501276942efc3182 (diff) | |
download | swppy-49f510d2d60129526832bfcd9c0f4049962bc80e.tar.gz swppy-49f510d2d60129526832bfcd9c0f4049962bc80e.tar.xz swppy-49f510d2d60129526832bfcd9c0f4049962bc80e.zip |
move stuff around and create initial source structure
Diffstat (limited to '')
-rw-r--r-- | src/emu/mem.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/emu/mem.h b/src/emu/mem.h new file mode 100644 index 0000000..34b13fa --- /dev/null +++ b/src/emu/mem.h @@ -0,0 +1,8 @@ +#ifndef _MEM_H +#define _MEM_H + +#include <stdint.h> + +extern uint8_t MEM[]; + +#endif |