diff segacd.h @ 2061:7c1760b5b3e5 segacd

Implemented basic TOC functionality of CDD MCU
author Michael Pavone <pavone@retrodev.com>
date Thu, 27 Jan 2022 00:33:41 -0800
parents 70260f6051dd
children 02a9846668d1
line wrap: on
line diff
--- a/segacd.h	Sun Jan 23 11:11:07 2022 -0800
+++ b/segacd.h	Thu Jan 27 00:33:41 2022 -0800
@@ -3,6 +3,7 @@
 #include <stdint.h>
 #include "genesis.h"
 #include "lc8951.h"
+#include "cdd_mcu.h"
 
 typedef struct {
 	m68k_context    *m68k;
@@ -27,6 +28,7 @@
 	uint8_t         need_reset;
 	uint8_t         memptr_start_index;
 	lc8951          cdc;
+	cdd_mcu         cdd;
 } segacd_context;
 
 segacd_context *alloc_configure_segacd(system_media *media, uint32_t opts, uint8_t force_region, rom_info *info);