单选题 下面的程序统计1000:0处的32个字节型整数中,其值在[-64,-16]中的数据的个数,结果存在DX中。补全这个程序。( ) mov ax,1000h mov ds,ax mov bx,0 mov dx,0 mov cx,32 s: mov al,0 ______ cmp al,16 ______ cmp al,64 ______ inc dx s0: inc bx loop s
相关试题
单选题 按照地址从低到高的顺序排列,双字型数据16在内存中如何存储?( )
单选题 需要使用DS的指令是( )。
单选题 可以改变标志寄存器的值的指令是( )。
单选题 下列与标志寄存器相关的说法,错误的是()。
单选题 中断过程的正确顺序是()。 ①取得中断类型码N ②pushf ③TF=0,IF=0 ④push IP ⑤push CS ⑥设置CS,IP指向中断处理程序第一条指令
单选题 mov ax,cs mov ds,ax mov si,offset again mov cx,offset againend-offset again cl rep movsb mov ax,es push ax mov ax,0 push ax mov bp,sp jmp dword ptr [bp] again: mov ax,_______ jmp ax startend: mov ax,4c00h int 21h againend:nop code ends end start
单选题 对于16位结构的CPU,其应有的特征不包括( )。
单选题 对于在debug中使用t命令,正确的说法是( )。