⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logging.asm

📁 比dos下的debug更好的debug程序源码
💻 ASM
字号:
;
; GRDP
;
; Copyright(c) LADsoft
;
; David Lindauer, camille@bluegrass.net
;
;
; LOGGING.ASM
;
; Function: log the session to a file
;
	;MASM MODE
	.MODEL SMALL
	.386


include  eprints.inc 
include  einput.inc 
include  emtrap.inc 
include  ebreaks.inc 

	PUBLIC logging,logtofile,CloseLogFile,LoggingStat

	.data
LogFileName	db	80 DUP (?)
LogfileHandle	dw	0
LogfileBufferPosition	dw	0
LogfileBuffer	db	128 DUP (0)

	.CODE
;
; show status of logger
;
LoggingStat	PROC
	test	[LogfileHandle],-1
	jz	nolog
	PRINT_MESSAGE	<13,10,"Log file: ">
	mov	bx,offset LogFileName
	call	DgroupMessage
	ret
nolog:
	PRINT_MESSAGE	<13,10,"Logging disabled">
	ret
Loggingstat	ENDP
;
; log command
;
logging	PROC	
	int	3
	call	CloseLogFile		; close old file
	cmp	byte ptr [si],'a'	; check for append
	pushf
	jnz	noappend
	inc	si
noappend:
	Call	WadeSpace	; Wade till name
	jz	nofile
	mov	[LogfileBufferPosition],0
	mov	di,offset LogFileName	; get name
lnlp:
	lodsb
	cmp	al,13
	jz	lnlpend
	stosb
	jmp	lnlp
lnlpend:
	sub	al,al    		; open log file
	stosb
	popf
	mov	al,2
	jnz	noexist
	mov	al,82h 			; try to open for append (non-inheritable)
	mov	ah,3dh
	mov	dx,offset LogFileName
	int	21h
	jc	noexist			; doesn't exist, creeate it
	mov	[LogfileHandle],ax		; LogfileBufferPositionition to end
	mov	bx,ax
	mov	ax,4202h		; seek to eof for append
	sub	cx,cx
	sub	dx,dx
	int	21h
	jnc	xit
	call	closeit
	jmp	noopen
noexist:
	cmp	al,2			; try to create file
	jnz	noopen
	mov	ah,3ch
	mov	dx,offset LogFileName
	sub	cx,cx
	int	21h
	jc	noopen			; failed, get out
	
	mov	bx,ax			; succeeded, close and reopen
	call	closeit
	mov	ax,3d82h		; open, mark as non-inheritable
	mov	dx,offset LogFileName
	int	21h
	jc	noopen
	mov	[LogfileHandle],ax	; finally open, save it and exit
xit:
	sub	sp,2
nofile:
	add	sp,2
	clc
	ret
noopen:
	PRINT_MESSAGE	<13,10,"Can't open log file for write">
	clc
	ret
logging	ENDP
;
; close log file
;
closeLogfile PROC
	call	WriteBuffer
	mov	bx,[LogfileHandle]
	or	bx,bx
	jz	noclose
	call	closeit
noclose:
	ret
closeLogfile	ENDP

closeit	PROC
	mov	[LogfileHandle],0
	mov	ah,3eh
	int	21h
	ret
closeit	ENDP
;
; write a buffer out to log file
;
WriteBuffer PROC
	mov	bx,[LogfileHandle]
	or	bx,bx
	jz	nowrite
	mov	cx,[LogfileBufferPosition]
	mov	[LogfileBufferPosition],0
	mov	dx,offset LogfileBuffer
	mov	ah,40h
	int	21h
	jnc	writeok
	call	closeit
	PRINT_MESSAGE	<13,10,"Error writing log file">
writeok:
nowrite:
	ret
WriteBuffer ENDP
;
; log a char to the file
;
LogToFile PROC
	test	[LogfileHandle],-1
	jz	nologtofile
	pusha
	cmp	al,1ah
	jz	logfix
	cmp	al,0ch
	jnz	logok
logfix:
	mov	al,'.'
logok:
	int	3
	inc	[LogfileBufferPosition]
	mov	di,[LogfileBufferPosition]
	mov	[di + LogfileBuffer -1],al
	cmp	di,128
	jc	noflush
	call	WriteBuffer
noflush:
	popa
nologtofile:
	ret
LogToFile ENDP
	end

⌨️ 快捷键说明

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