We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://blog.runphp.net/other/2010/11/16/assembly-language-wangshuang.html
实验4 [bx]和loop的使用 ```asm assume cs: codesg codesg segment mov ax, 20h ; 20:0 到 20:3f mov ds, ax mov bx, 0 mov cx, 64 ; 循环64次 s: mov [bx], bl ; ((ds)*16+ bx) = (bl) = ( 0 到 63) inc bl loop s mov ax, 4c00H int 21H codesg ends end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://blog.runphp.net/other/2010/11/16/assembly-language-wangshuang.html
实验4 [bx]和loop的使用 ```asm assume cs: codesg codesg segment mov ax, 20h ; 20:0 到 20:3f mov ds, ax mov bx, 0 mov cx, 64 ; 循环64次 s: mov [bx], bl ; ((ds)*16+ bx) = (bl) = ( 0 到 63) inc bl loop s mov ax, 4c00H int 21H codesg ends end
The text was updated successfully, but these errors were encountered: