8086汇编:设数据存在内存BUF开始的单元中,长度为N,奇数的个数存在AL MOV CX,N MOV AL,0 LEA DI,BUF L1: TEST [DI],01H JZ NEXT INC AL NEXT: INC DI LOOP L1