汇编网首页登录博客注册
hitlerdsaf的学习博客
博客首页博客互动【做检测题】论坛求助

我的博客

个人首页 |  我的文章 |  我的相册 |  我的好友 |  最新访客 |  文章收藏 |  论坛提问 |  友情链接 |  给我留言  
图片载入中
学习动态
最新留言
好友圈
文章收藏
友情链接

[2011-10-18 09:03] 实验十五松开A显示满屏幕A

点击查看原图
assume cs:codesg

stacksg segment
    db 128 dup (0)
stacksg ends

codesg segment
start:
    mov ax, stacksg
    mov ss, ax
    mov sp, 128
    
    push cs
    pop ds
    
    mov ax, 0
    mov es, ax
    
    mov si, offset int9
    mov di, 204h
    mov cx, offset int9end-offse...
阅读全文 | 评论次数(0) | 浏览次数(314) | 所属类型(汇编作业)

[2011-10-14 15:52] 实验十四:显示ROM中的时间<y/m/d h:m:s>

点击查看原图
assume cs:codesg

datasg segment
         db 6 dup (0)
         db 'xx/xx/xx xx:xx:xx',24h
datasg ends

stacksg segment
    dw 10 dup (0)
stacksg ends

codesg segment
start:
        mov ax,datasg
        mov ds,ax

        mov ax, stacksg
        mov ss, ax
        mov sp, 20

  ...
阅读全文 | 评论次数(1) | 浏览次数(360) | 所属类型(汇编作业)

[2011-10-14 12:17] 实验十二

点击查看原图
assume cs:codesg, ds:datasg

datasg segment
    
datasg ends

codesg segment
start:  
        mov ax, datasg
        mov ds, ax
        mov si, offset do0

        mov ax, 0
        mov es, ax
        mov di, 200h
        mov cx, offset do0end - offset do0 
        cld
        rep m...
阅读全文 | 评论次数(0) | 浏览次数(311) | 所属类型(汇编作业)

[2011-10-14 10:29] 实验十一

点击查看原图
assume cs:codesg, ds:datasg
datasg segment
    db "Beginner's All-purpose Symbolic Instruction Code.",0
datasg ends

codesg segment
start:
        mov ax, datasg
        mov ds, ax
        mov ax, 0B800h
        mov es, ax
        
        mov si,0
        mov dh, 4
        mov dl, 0
...
阅读全文 | 评论次数(0) | 浏览次数(309) | 所属类型(汇编作业)

[2011-10-12 16:28] 课程设计1

点击查看原图
assume cs:codesg

data segment
    db '1975',   '1976',  '1977',  '1978',  '1979',  '1980',  '1981',  '1982',  '1983'
    db '1984',   '1985',  '1986',  '1987',  '1988',  '1989',  '1990',  '1991',  '1992'
    db '1993',   '1993',  '1995'

    dd  16, 22, 382, 1356, 2390, 8000, 16000, 24486, 5...
阅读全文 | 评论次数(1) | 浏览次数(404) | 所属类型(汇编作业)

[2011-10-12 14:07] 实验10-1/2/3

assume cs:codesg,ss:stacksg,ds:datasg

datasg segment
;string
    db 'My name is YangKunLong.', 0
;160--the bytes per line, help to calculate   -----and color for display
    db 160,00000101B
    ;start at ds:[26], to storage the temp variable of the divdw.
    dw 8 dup (0)
    ;start at ds...
阅读全文 | 评论次数(0) | 浏览次数(309) | 所属类型(汇编作业)

[2011-10-12 10:59] 第十章实验1和2

assume cs:codesg

datasg segment
;string
    db 'My name is YangKunLong.', 0
;160--the bytes per line, help to calculate   -----and color for display
    db 160,01000010B
    ;start at ds:[26], to storage the temp variable of the divdw.
    dw 8 dup (0)
datasg ends

stacksg segment
    d...
阅读全文 | 评论次数(0) | 浏览次数(373) | 所属类型(汇编作业)

[2011-10-11 16:26] 检测点10-4

题目应该实现了将栈顶移动到ax的目的
那么ax的值应该时是刚刚压入的2...
阅读全文 | 评论次数(0) | 浏览次数(317) | 所属类型(汇编作业)

[2011-10-11 16:20] 检测点10-3

压入顺序是先CS,后IP所以先弹出IP 3 然后才是CS 1000
故ax =3  bx = 1000
则结果为1006...
阅读全文 | 评论次数(0) | 浏览次数(334) | 所属类型(汇编作业)

[2011-10-11 16:17] 检测点10-2

弹出的地址为调用函数时压入的IP地址
那么ax应该为3...
阅读全文 | 评论次数(0) | 浏览次数(312) | 所属类型(汇编作业)
『 查看更多文章 』