diff options
author | Michael Pavone <pavone@retrodev.com> | 2018-08-14 08:29:27 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2018-08-14 08:29:27 -0700 |
commit | eed0812cf64090a8f09d0e573c82ea325014e123 (patch) | |
tree | 138d945c64a5dfa4da5658809e7eab3a707e0f0b /jcart.c | |
parent | f6ead549ef0bc6f605c094f04b41affb6b239e80 (diff) |
Remove stray / in jcart.c
Diffstat (limited to 'jcart.c')
-rw-r--r-- | jcart.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ uint16_t jcart_read_w(uint32_t address, void *context) io_port *ports = get_ports(m68k); //according to Eke, bit 14 is forced low, at least on the Micro Machines 2 cart //TODO: Test behavior of actual cart - uint16_t value = io_data_read(ports, m68k->current_cycle) << 8/; + uint16_t value = io_data_read(ports, m68k->current_cycle) << 8; value |= io_data_read(ports + 1, m68k->current_cycle); return value; } |