Skip to content

Commit ed893fe

Browse files
committed
From: Robert [mailto:[email protected]]
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
1 parent 5406ec6 commit ed893fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/emu/cpu/cp1610/cp1610.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ enum
3131
};
3232

3333
#define CP1610_INT_NONE 0
34-
#define CP1610_INT_INTRM 1 /* Maskable */
35-
#define CP1610_RESET 2 /* Non-Maskable */
36-
#define CP1610_INT_INTR INPUT_LINE_NMI /* Non-Maskable */
34+
#define CP1610_INT_INTRM 1 /* Maskable */
35+
#define CP1610_RESET INPUT_LINE_RESET /* Non-Maskable */
36+
#define CP1610_INT_INTR INPUT_LINE_NMI /* Non-Maskable */
3737

3838

3939
CPU_GET_INFO( cp1610 );

0 commit comments

Comments
 (0)