diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-11-08 15:51:57 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-11-08 15:51:57 -0800 |
commit | c125d82e2076aad6d24062212c55e5db834cd90c (patch) | |
tree | d7dde6fdb87a935ae431517da1e609b1b9e7506b /menu.c | |
parent | e4c347d394fc7ee86e8c7bb6d10029ad7157a6d5 (diff) |
Initial work for allowing loading a ROM from menu
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -127,6 +127,9 @@ void * menu_write_w(uint32_t address, void * context, uint16_t value) } break; } + case 2: + m68k->should_return = 1; + break; default: fprintf(stderr, "WARNING: write to undefined menu port %X\n", address); } |