From 5e0ddf29582970783c3d25dfabef090280170eec Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Wed, 19 Mar 2014 14:30:32 +0000 Subject: [PATCH] (MESS) concept: Added ATTR_DEPRECATED. (nw) --- src/mess/machine/concept_exp.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/mess/machine/concept_exp.h b/src/mess/machine/concept_exp.h index d4c4d774cf2..697492d664a 100644 --- a/src/mess/machine/concept_exp.h +++ b/src/mess/machine/concept_exp.h @@ -4,6 +4,8 @@ #include "emu.h" #include "machine/wd17xx.h" +// FIXME: Concept expansion ports should just use the Apple II Bus device! +// The code below is outdated and inaccurate! class concept_exp_card_device; @@ -30,7 +32,7 @@ protected: // device type definition -extern const device_type CONCEPT_EXP_PORT; +extern const ATTR_DEPRECATED device_type CONCEPT_EXP_PORT; //************************************************************************** @@ -111,7 +113,7 @@ protected: }; -extern const device_type CONCEPT_FDC; -extern const device_type CONCEPT_HDC; +extern const ATTR_DEPRECATED device_type CONCEPT_FDC; +extern const ATTR_DEPRECATED device_type CONCEPT_HDC; #endif