22 lines
595 B
C
22 lines
595 B
C
|
/****************************************************************
|
||
|
* *
|
||
|
* Copyright 2007 Fidelity Information Services, Inc *
|
||
|
* *
|
||
|
* This source code contains the intellectual property *
|
||
|
* of its copyright holder(s), and is made available *
|
||
|
* under a license. If you do not know the terms of *
|
||
|
* the license, please stop and do not read further. *
|
||
|
* *
|
||
|
****************************************************************/
|
||
|
|
||
|
/* 16-bit register definitions: */
|
||
|
REGDEF(AX,0),
|
||
|
REGDEF(CX,1),
|
||
|
REGDEF(DX,2),
|
||
|
REGDEF(BX,3),
|
||
|
|
||
|
REGDEF(SP,4),
|
||
|
REGDEF(BP,5),
|
||
|
REGDEF(SI,6),
|
||
|
REGDEF(DI,7),
|