鱼C论坛

 找回密码
 立即注册
查看: 2562|回复: 0

[技术交流] 16.3 直接定址表

[复制链接]
发表于 2020-9-18 18:54:27 | 显示全部楼层 |阅读模式

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

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

x
本帖最后由 sbx 于 2020-9-18 20:36 编辑

;编写一个子程序,计算sin(x),x∈{00,300,600,900,1200,1500,1800},
;并在屏幕中间显示计算结果。
;用ax向子程序传递角度。
assume cs:code
code segment
start:
mov ax,121
call showsin



mov ax,4c00h
int 21h

showsin:
jmp short show
table1 dw 0,30,60,90,120,150,180
table2 dw ag0,ag30,ag60,ag90,ag120,ag150,ag180  ;字符串偏移地址表
ag0 db '0',0      ;sin(0)对应的字符串"0"
ag30 db '0.5',0   ;sin(30)对应的字符串"0.5"
ag60 db '0.866',0  ;sin(60)对应的字符串"0.866"
ag90 db '1',0      ;sin(90)对应的字符串"1"
ag120 db '0.866',0  ;sin(120)对应的字符串"0.866"
ag150 db '0.5',0   ;sin(150)对应的字符串"0.5"
ag180 db '0',0      ;sin(180)对应的字符串"0"
err db 'error',0
show:
push bx
push es
push si
push cx
push di
mov bx,0b800h
mov es,bx
;检测提供的角度值是否在table1表中,不在则退出,在则继续
mov si,0
mov cx,7
s1:cmp ax,table1[si]
jne s
jmp short s2
s:add si,2
loop s1
mov si,0
mov di,160*12+40*2
s5:mov al,err[si]
cmp al,0
jne s3
jmp short s4
s3:
mov es:[di],al
inc si
add di,2
jmp short s5
s4:
pop di
pop cx
pop si
pop es
pop bx
ret

;si就是table2的偏移,取得对应的字符串的偏移地址,放在bx中
s2:
mov bx,table2[si]

;以下显示sin(x)对应的字符串
mov si,160*12+40*2
shows: mov ah,cs:[bx]
cmp ah,0
je showret
mov es:[si],ah
inc bx
add si,2
jmp short shows

showret:
pop di
pop cx
pop si
pop es
pop bx
ret

code ends
end start
截图未命名14.jpg
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

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

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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