mirror of
https://github.com/holub/mame
synced 2025-05-30 01:23:07 +03:00
From: Robert [mailto:pac0446@bigpond.net.au]
Sent: Wednesday, December 31, 2008 6:39 PM To: Mamedev submit Subject: Fix for 1610 cpu The cp1610 cpu crashes when it attempts to reset itself. It gets the PULSE_LINE message. A one-line fix to cp1610.h will fix the problem. It has been tested on the intellivision mess driver. Please change the line that says: #define CP1610_RESET 2 to #define CP1610_RESET INPUT_LINE_RESET Thank you and Happy New Year. - Robbbert
This commit is contained in:
parent
5406ec6027
commit
ed893fe35c
@ -31,9 +31,9 @@ enum
|
||||
};
|
||||
|
||||
#define CP1610_INT_NONE 0
|
||||
#define CP1610_INT_INTRM 1 /* Maskable */
|
||||
#define CP1610_RESET 2 /* Non-Maskable */
|
||||
#define CP1610_INT_INTR INPUT_LINE_NMI /* Non-Maskable */
|
||||
#define CP1610_INT_INTRM 1 /* Maskable */
|
||||
#define CP1610_RESET INPUT_LINE_RESET /* Non-Maskable */
|
||||
#define CP1610_INT_INTR INPUT_LINE_NMI /* Non-Maskable */
|
||||
|
||||
|
||||
CPU_GET_INFO( cp1610 );
|
||||
|
Loading…
Reference in New Issue
Block a user