# HG changeset patch # User Michael Pavone # Date 1534260567 25200 # Node ID 28ec17387be5dc04644b8479dd3fd1375892b28b # Parent dafe2a8769fd44d01ad66bd534818fa9103c8aae Remove stray / in jcart.c diff -r dafe2a8769fd -r 28ec17387be5 jcart.c --- a/jcart.c Tue Aug 14 00:22:10 2018 -0700 +++ b/jcart.c Tue Aug 14 08:29:27 2018 -0700 @@ -41,7 +41,7 @@ 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; }