summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2018-08-14 08:29:27 -0700
committerMichael Pavone <pavone@retrodev.com>2018-08-14 08:29:27 -0700
commiteed0812cf64090a8f09d0e573c82ea325014e123 (patch)
tree138d945c64a5dfa4da5658809e7eab3a707e0f0b
parentf6ead549ef0bc6f605c094f04b41affb6b239e80 (diff)
Remove stray / in jcart.c
-rw-r--r--jcart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/jcart.c b/jcart.c
index fec35a9..734d79d 100644
--- a/jcart.c
+++ b/jcart.c
@@ -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;
}