首页
社区
课程
招聘
[旧帖] [原创]mov cs:0,cs:[bx] 这样写可以吗 0.00雪花
发表于: 2008-11-11 15:04 2900

[旧帖] [原创]mov cs:0,cs:[bx] 这样写可以吗 0.00雪花

2008-11-11 15:04
2900
assume cs:codesg

codesg segment

    dw 0123h,0456h,0789h,0abch,0defh,0feah,0cbah,0987h
    dw 0,0,0,0,0,0,0,0,0,0

start:  mov ax,cs
    mov ss,ax
    mov sp,18
    mov ax,0
    mov ds,ax
    mov bx,0
    mov cx,8
s:    push [bx]
    mov cs:[0],cs:[bx]
    add bx,2
    loop s
    mov ax,4c00h
int 21h

eodesg ends
emd start

[课程]Android-CTF解题方法汇总!

收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回
//