diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-07-21 00:52:21 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-07-21 00:52:21 -0700 |
commit | e7b2812fbdb135338db7a5bade0db8a16dc772b2 (patch) | |
tree | a39ce0f70953c2e5a530396623505ee16395d60f /stateview.c | |
parent | 0f58f43d7125de5144614de7b3c57db813d2464d (diff) |
Fix stateview build and fix Makefile to use /bin/echo since builtin echo does not always support -e
Diffstat (limited to 'stateview.c')
-rw-r--r-- | stateview.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/stateview.c b/stateview.c index 0d2286d..751d2af 100644 --- a/stateview.c +++ b/stateview.c @@ -15,6 +15,9 @@ io_port gamepad_2; uint8_t reset = 1; uint8_t busreq = 0; +uint16_t ram[RAM_WORDS]; +uint8_t z80_ram[Z80_RAM_BYTES]; + uint16_t read_dma_value(uint32_t address) { return 0; |