diff options
Diffstat (limited to 'src/mame/includes/8080bw.h')
-rw-r--r-- | src/mame/includes/8080bw.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mame/includes/8080bw.h b/src/mame/includes/8080bw.h index 806b7c1385d..f399bf0cf85 100644 --- a/src/mame/includes/8080bw.h +++ b/src/mame/includes/8080bw.h @@ -255,6 +255,25 @@ DISCRETE_SOUND_EXTERN( schaser_discrete ); /*******************************************************/ +/* Sidam Invasion */ +/*******************************************************/ + +class invasion_state : public invaders_state +{ +public: + invasion_state(machine_config const &mconfig, device_type type, char const *tag) : + invaders_state(mconfig, type, tag) + { + } + + void invasion(machine_config &config); + +private: + void io_map(address_map &map); +}; + + +/*******************************************************/ /* Darth Vader bootleg */ /*******************************************************/ |