当前位置:网站首页>汇编语言-王爽 第8章 数据处理的两个基本问题-笔记
汇编语言-王爽 第8章 数据处理的两个基本问题-笔记
2022-06-27 05:45:00 【执手听落花】
data segment
db '1975', '1976','1977', '1978','1979', '1980','1981', '1982','1983'
db '1984', '1985','1986', '1987','1988', '1989','1990', '1991','1992'
db '1993', '1994','1995'
;以上表示21年的21个字符串
dd 16,22,382,1356,2390,8000,16000,24486,50065,97479,140417,197514
dd 345980,590827,803530,1183000,1843000,2759000,3753000,4649000,5937000
;以上表示21年公司总收入的21个dword型数据
dd 3,7,9,13,28,38,130,220,476,778,1001,1442,2258,2793,4037,5635,8226
dd 11542,14430,15257,17800
;以上表示21年公司雇员人数的21个word型数据
data ends
table segment
db 21 dup ('year summ ne ?? ')
table ends
code segment
start: mov ax, data
mov ds, ax
mov ax, table
mov es, ax
mov bx, 0
mov si, 0
mov di, 0
mov cx, 21
s: mov ax, [si]
mov es:[bx], ax
mov ax, [si+2]
mov es:[bx+2]
mov ax, [si+84]
mov es:[bx+5], ax
mov ax, [si+86]
mov es:[bx+7], ax
mov ax, [di+168]
mov es:[bx+0ah], ax
mov ax, [si+84]
mov dx, [si+86]
div word ptr [di+168]
mov word ptr es:[bx+0dh], ax
add bx, 16
add si, 4
add di, 2
loop s
mov ax, 4c00h
int 21h
code ends
end start
边栏推荐
- Unicast, multicast and broadcast of IP network communication
- 双位置继电器RXMVB2 R251 204 110DC
- Database - index
- 【Cocos Creator 3.5.1】this.node.getPosition(this._curPos)的使用
- [FPGA] design and implementation of frequency division and doubling based on FPGA
- 【FPGA】UART串口_V1.1
- 【FPGA】基于bt1120时序设计实现棋盘格横纵向灰阶图数据输出
- 体验 win10 下 oceanbase 数据库
- 软件测试年终总结报告模板
- 汇编语言-王爽 第13章 int指令-笔记
猜你喜欢
EasyExcel合并相同内容单元格及动态标题功能的实现
RTP sending PS stream tool (open source)
openstack实例重启状态就会变成错误处理方法,容器搭建的openstack重启计算节点compute服务方法,开机提示Give root password for maintenance处理方法
30个单片机常见问题及解决办法!
软件测试年终总结报告模板
Navigation [machine learning]
openresty使用文档
Codeforces Round #802 (Div. 2)
NLP-D62-nlp比赛D31&刷题D15
Wechat applet websocket use case
随机推荐
Opencv implements object tracking
C language implementation timer
【Cocos Creator 3.5.1】坐标的加法
Leetcode99 week race record
Assembly language - Wang Shuang Chapter 13 int instruction - Notes
创建一个基础WDM驱动,并使用MFC调用驱动
【Cocos Creator 3.5.1】this.node.getPosition(this._curPos)的使用
Go log -uber open source library zap use
C Primer Plus 第11章_字符串和字符串函数_代码和练习题
双位置继电器RXMVB2 R251 204 110DC
Junda technology - centralized monitoring scheme for multi brand precision air conditioners
微信小程序刷新当前页面
Unicast, multicast and broadcast of IP network communication
函数栈帧的形成与释放
STM32 reads IO high and low level status
Double position relay jdp-1440/dc110v
Unity point light disappears
Functional continuous
three. JS first person camera gun following
网易云音乐params和encSecKey参数生成代码