📄 countlg.asm
字号:
; Turbo Assembler Copyright (c) 1991 By Borland International, Inc.
; COUNTLG.ASM
; Large model C-callable assembler function to count the number
; of lines and characters in a zero-terminated string.
;
; Function prototype:
; extern unsigned int LineCount(char * far StringToCount,
; unsigned int * far CharacterCountPtr);
; char far * StringToCount: pointer to the string on which
; a line count is to be performed
;
; unsigned int far * CharacterCountPtr: pointer to the int variable
; in which the character count
; is to be stored
;
; From the Turbo Assembler User's Guide - Interfacing Turbo Assembler
; with Borland C++
NEWLINE EQU 0ah ;the linefeed character is C's newline
; character
DOSSEG
.MODEL LARGE
.CODE
PUBLIC _LineCount
_LineCount PROC
push bp
mov bp,sp
push si ;preserve calling program's register
; variable, if any
push ds ;preserve C's standard data seg
lds si,[bp+6] ;point DS:SI to the string
sub cx,cx ;set character count to 0
mov dx,cx ;set line count to 0
LineCountLoop:
lodsb ;get the next character
and al,al ;is it null, to end the string?
jz EndLineCount ;yes, we're done
inc cx ;no, count another character
cmp al,NEWLINE ;is it a newline?
jnz LineCountLoop ;no, check the next character
inc dx ;yes, count another line
jmp LineCountLoop
EndLineCount:
inc dx ;count line ending with null character
les bx,[bp+10] ;point ES:BX to the location at
; which to return character count
mov es:[bx],cx ;set the character count variable
mov ax,dx ;return the line count as
; the function value
pop ds ;restore C's standard data seg
pop si ;restore calling program's
; register variable, if any
pop bp
ret
_LineCount ENDP
END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -