summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/nec/necintrf.h
blob: 552647b51f38cbb10b91c494f9c6d0ed60d29118 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ASG 971222 -- rewrote this interface */
#ifndef __NEC_H_
#define __NEC_H_

#include "cpuintrf.h"

enum
{
	NEC_PC=0,
	NEC_IP, NEC_AW, NEC_CW, NEC_DW, NEC_BW, NEC_SP, NEC_BP, NEC_IX, NEC_IY,
	NEC_FLAGS, NEC_ES, NEC_CS, NEC_SS, NEC_DS,
	NEC_VECTOR, NEC_PENDING
};

/* Public functions */
extern CPU_GET_INFO( v20 );
extern CPU_GET_INFO( v30 );
extern CPU_GET_INFO( v33 );

#endif