第8章汇编测试题目
1. 下列指令序列不能够实现把内存地址0:202h中的字节数据送入al功能的是______。C、mov ax,0mov ds,axmov bp,202hmov al,
D、mov ax,0mov ds,axmov bp,200hmov al,ds:A、mov ax,0
mov ds,ax
mov bx,202h
mov al,B、mov ax,0
mov ds,ax
mov bx,200h
mov al,2. 下列指令不合理的是______。A、mov ds:,alB、mov ds:,axC、mov ds:,0ffhD、push ds:3. mov dx,0
mov ax,1001
mov bx,100
div bl
以上四条指令执行完后,ah值是_____。A、1 B、10 C、1001 D、04. 对如下程序:
assume cs:codesg,ds:datasg
datasg segment
dd 123456h
dw 789h,0h
datasg ends
codesg segment
start: mov ax,datasg
mov ds,ax
mov ax,ds: 每天都来学习,一定会进步的,加油!
页:
[1]