iasm.inc

来自「比dos下的debug更好的debug程序源码」· INC 代码 · 共 79 行

INC
79
字号
asmop	struc
addrx	dd	0	;address of offset (or seg for segmented jump)
addrx2	dd	0	;offset for segmented jump if addrx is segment
mode	db	0	;AM flag showing addressing mode

	AM_NONE   = 0		;no mode, like [44h], or no arg, like CLI
	AM_REG	  = 1		;register, like AX
	AM_BASED  = 2		;based, as in [bx+label]
	AM_MEM	  = 3		;memory, as in byte ptr [44h], or label
	AM_IMM	  = 4		;immediate, as in mov ax,5
	AM_SEGOFFS = 5		;seg:ofs, as in es:[44h]
	AM_CR	= 6		;control register used
	AM_DR	= 7		;debug register used
	AM_TR	= 8		;test register used
	AM_FPREG = 9		;floating point register used
	AM_SEG	= 10		;segment, maybe as in mov ax,cs

areg1	db	0	;base register
areg2	db	0	;index register (pertains to scale)

;These equates apply to areg1 and areg2. areg1 is a simple index register,
;like [bx+nnn], areg2 is for two cases: 1) two index registers used, as
;in [bx+si+nnn], and 2) scaled registers, like [ebx+eax*4+nnn]
;  In case 2), the scale applied to areg2 is in ascale

	isEAX	equ	0	;reference to this register in areg1,2
	isECX	equ	1
	isEDX	equ	2
	isEBX	equ	3
	isESP	equ	4
	isEBP	equ	5
	isESI	equ	6
	isEDI	equ	7

ascale	dw	0	;scale of areg2
	TIMES1	equ	1
	TIMES2	equ	2
	TIMES4	equ	4
	TIMES8	equ	8
asize	db	0	;size of memory/register 1=byte, 10-tbyte, etc
	NOSIZE		equ	0
	BYTESIZE	equ	1
	WORDSIZE	equ	2
	DWORDSIZE	equ	4
	FWORDSIZE	equ	6
	QWORDSIZE	equ	8
	TBYTESIZE	equ	10
msize	db	0	;addressing mode size 2=16-bit, 4=32-bit
	BYTEMODE	equ	1
	WORDMODE	equ	2
	DWORDMODE	equ	4
asmop	ends

TRUE	equ	1


;These next flags get put in the mode field


;These values are stored in RepPfxBitmap, and indicate which one of these
;prefixes was identified

AF_REP	= 1
AF_REPNE = 2
AF_REPE  = 4
AF_LOCK  = 8

;These are keyed to offsets of segment overrides (or 66h,67h overrides)
;in the string of possible override strings.  They work in reverse, so
;that AS is the first two chars of the string, OS is next, then GS etc.

AS_ES = 	00000001b
AS_CS = 	00000010b
AS_SS = 	00000100b
AS_DS = 	00001000b
AS_FS = 	00010000b
AS_GS = 	00100000b
AS_OPSIZE = 	01000000b
AS_ADDRSIZE = 	10000000b

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?