1、指出下列指令中, (1)哪些指令(序列)属于顺序结构? start: push ds ;保护原数据段 sub ax,ax push ax mov ax,data ;data送入ds mov ds,ax mov bx,offset buf mov cx,n ;取元素个数 mov ax,0
时间: 2023-05-28 18:03:20 浏览: 174
属于顺序结构的指令序列为:
start:
push ds ;保护原数据段
sub ax,ax
push ax
mov ax,data ;data送入ds
mov ds,ax
mov bx,offset buf
mov cx,n ;取元素个数
mov ax,0
这些指令是按照顺序依次执行的,没有任何分支或循环结构。
阅读全文