summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/i86/i86intf.h
blob: 7a566bdfd2535d8f829d90bcab154576d3570774 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* ASG 971222 -- rewrote this interface */
#pragma once

#ifndef __I86INTF_H__
#define __I86INTF_H__

#include "cpuintrf.h"

enum
{
	I8086_PC=0,
	I8086_IP,
	I8086_AX,
	I8086_CX,
	I8086_DX,
	I8086_BX,
	I8086_SP,
	I8086_BP,
	I8086_SI,
	I8086_DI,
	I8086_FLAGS,
	I8086_ES,
	I8086_CS,
	I8086_SS,
	I8086_DS,
	I8086_VECTOR
};

/* Public functions */
CPU_GET_INFO( i8086 );

#endif /* __I86INTF_H__ */