当前位置:网站首页>汇编语言-王爽 第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
边栏推荐
- IAR systems fully supports Centrino technology 9 series chips
- leetcode299周赛记录
- 思维的技术:如何破解工作生活中的两难冲突?
- 块级元素&行内元素
- Navigation [machine learning]
- 【FPGA】 基于FPGA分频,倍频设计实现
- DAST black box vulnerability scanner part 6: operation (final)
- 310. 最小高度树
- Senior [Software Test Engineer] learning route and necessary knowledge points
- Two position relay rxmvb2 r251 204 110dc
猜你喜欢

多线程基础部分Part2

免费的 SSH 和 Telnet 客户端PuTTY

Using domain name forwarding mqtt protocol, pit avoidance Guide

Experience oceanbase database under win10

【FPGA】基于bt1120时序设计实现棋盘格横纵向灰阶图数据输出

双位置继电器HJWS-9440
![Mechanical transcoding journal [17] template, STL introduction](/img/78/926db660139fda3d31cceccad7096c.png)
Mechanical transcoding journal [17] template, STL introduction

Niuke practice 101-c reasoning clown - bit operation + thinking

Assembly language - Wang Shuang Chapter 13 int instruction - Notes
![[nips 2017] pointnet++: deep feature learning of point set in metric space](/img/3e/0a47eecc27f236d629c611e683b37a.png)
[nips 2017] pointnet++: deep feature learning of point set in metric space
随机推荐
【合辑】点云基础知识及点云催化剂软件功能介绍
块级元素&行内元素
微信小程序WebSocket使用案例
体验 win10 下 oceanbase 数据库
使用域名转发mqtt协议,避坑指南
IAR systems fully supports Centrino technology 9 series chips
Assembly language - Wang Shuang Chapter 3 notes and experiments
【Cocos Creator 3.5.1】event. Use of getbutton()
【QT小点】QT下载链接
mysql 查询时将状态改为相对应的文字
Double position relay jdp-1440/dc110v
Configuring the help class iconfiguration in C # NETCORE
Spark 之 built-in functions
Redis4.0新特性-主动内存碎片整理
Open the door small example to learn ten use case diagrams
Asp. Net core6 websocket simple case
【QT小点】实现看门狗功能,检测外部程序是否在运行
我对于测试团队建设的意见
[collection] Introduction to basic knowledge of point cloud and functions of point cloud catalyst software
LeetCode-515. 在每个树行中找最大值