我是8086大会的初学者。我正在学习我在旧货店里发现的一本90年代早期的旧书。我认为像1992年那样编程可能很有趣。
无论如何,我已经完成了这本书,现在我已经在命令提示符上写了一些程序在我的旧Win95笔记本电脑上。
在切换到使用'les'指令后,我遇到了这个问题没有按预期工作的问题。但是,当我手动设置适当地址的ES和DI寄存器时,它确实有效。
;************************************
; STACK SEGMENT
;************************************
TheStack SEGMENT STACK ;STACK specifies the stack segment
db 64 dup (THESTACK) ;reserves 512 bytes for the stack
TheStack ENDS
;************************************
; END STACK SEGMENT
;************************************
;************************************
; DATA SEGMENT
;************************************
Data SEGMENT
BufAddr DD 0b8000000h
Data ENDS
;************************************
; END DATA SEGMENT
;************************************
;************************************
; CODE SEGMENT
;************************************
Code SEGMENT
assume CS:Code,DS:Data
MAIN PROC
Start: ;execution begins
;setup input for stosw
les di, DWORD PTR BufAddr
mov cx,0f4fh ;cx contains the number of times stosw will loop
cld
;draw smileys
mov ax,0f01h ;0f is the text attribute for white on black, 01 is the hex code for a smiley
rep stosw ;write it all to the buffer
;EXIT
mov AH,4CH ;Setup the terminate dos process service
mov AL,0 ;ERRORLEVEL takes 0
int 21H ;return to dos
MAIN ENDP
Code ENDS
;************************************
; END CODE SEGMENT
;************************************
END Start ;Start is the Main procedure
好的,所以这个程序应该在命令提示符窗口中绘制一堆笑脸ascii字符,但它不起作用。
当我用以下代码行替换'LES'行时,它确实有效。
mov bx,0b800h
mov es,bx
xor di,di
与BufAddr变量一起使用时,'LES'指令是否与前三行代码完全相同?
当我调试编译的exe(我使用MASM 6.11作为编译器)时,我注意到ES和DI寄存器没有加载正确的值。
答案 0 :(得分:7)
在加载段和偏移RAM之前,需要将DS
寄存器设置为实际指向数据段。默认情况下,DS
指向您的PSP,而PSP并不是您希望它指向的位置。