comparison jcart.c @ 1612:28ec17387be5

Remove stray / in jcart.c
author Michael Pavone <pavone@retrodev.com>
date Tue, 14 Aug 2018 08:29:27 -0700
parents c206a422d466
children 395f684c5379
comparison
equal deleted inserted replaced
1611:dafe2a8769fd 1612:28ec17387be5
39 { 39 {
40 m68k_context *m68k= context; 40 m68k_context *m68k= context;
41 io_port *ports = get_ports(m68k); 41 io_port *ports = get_ports(m68k);
42 //according to Eke, bit 14 is forced low, at least on the Micro Machines 2 cart 42 //according to Eke, bit 14 is forced low, at least on the Micro Machines 2 cart
43 //TODO: Test behavior of actual cart 43 //TODO: Test behavior of actual cart
44 uint16_t value = io_data_read(ports, m68k->current_cycle) << 8/; 44 uint16_t value = io_data_read(ports, m68k->current_cycle) << 8;
45 value |= io_data_read(ports + 1, m68k->current_cycle); 45 value |= io_data_read(ports + 1, m68k->current_cycle);
46 return value; 46 return value;
47 } 47 }
48 48
49 uint8_t jcart_read_b(uint32_t address, void *context) 49 uint8_t jcart_read_b(uint32_t address, void *context)