鱼C论坛

 找回密码
 立即注册
查看: 2271|回复: 3

[已解决]offset问题

[复制链接]
发表于 2018-2-7 12:15:59 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
assume cs:code
code segment

start:
                mov ax,cs
                mov ds,ax
                mov si,offset capital
                mov ax,0
                mov es,ax
                mov di,200h
                mov cx,offset capitalend - offset capital
                cld
                rep movsb

                mov ax,0
                mov es,ax
                mov word ptr es:[7ch*4],200h
                mov word ptr es:[7ch*4+2],0

                mov ax,4c00h
                int 21h

capital:
                push cx
                push si
                
change: 
                mov cl,[si]
                mov ch,0
                jcxz ok
                and byte ptr [si],11011111b
                inc si
                jmp short change
ok:        
                pop si
                pop cx
                iret
                
capitalend:nop

code ends

end start


offset capitalend - offset capital等于多少,这个标号地址怎么算啊?希望详细点  谢谢
最佳答案
2018-2-7 18:47:43
我晕,居然忘记改了 ^_^
抱歉,上面的不对,看这个
assume cs:code

code segment
start:
        mov ax, cs
        mov ds, ax
        
        mov si, offset capital
        mov di, offset capitalend
        mov cx, offset capitalend - offset capital


        mov ax,4c00h
        int 21h

capital:
        push cx
        push si

        pop si
        pop cx
        iret                
capitalend:nop

code ends

end start

无标题.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2018-2-7 18:44:47 | 显示全部楼层
assume cs:code

code segment
start:
        mov ax, cs
        mov ds, ax
        
        mov si, offset capital
        mov di, offset capital
        mov cx, offset capitalend - offset capital


        mov ax,4c00h
        int 21h

capital:
        push cx
        push si

        pop si
        pop cx
        iret                
capitalend:nop

code ends

end start

无标题.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2018-2-7 18:47:43 | 显示全部楼层    本楼为最佳答案   
我晕,居然忘记改了 ^_^
抱歉,上面的不对,看这个
assume cs:code

code segment
start:
        mov ax, cs
        mov ds, ax
        
        mov si, offset capital
        mov di, offset capitalend
        mov cx, offset capitalend - offset capital


        mov ax,4c00h
        int 21h

capital:
        push cx
        push si

        pop si
        pop cx
        iret                
capitalend:nop

code ends

end start

无标题.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2018-2-8 10:12:23 | 显示全部楼层
人造人 发表于 2018-2-7 18:47
我晕,居然忘记改了 ^_^
抱歉,上面的不对,看这个

谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-6 07:47

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表