在程序集x86中遍历2d数组

时间:2012-07-25 23:38:35

标签: c assembly x86

  

可能重复:
  x86 convert to lower case assembly

在我的问题中,我有一个2d char数组,我需要将所有内容更改为小写。

char list[100][20] = {{"ArtUro"}, {"Bryan"}, {"chris"}, {"David"}, {"Jon"}, {"Mark"}, {"shane"}, {"SIMON"}, {"Thomas"}, {"TONY"}};

我有

int b_search (char list[100][20], int count, char* token)
{
__asm
{   
mov eax, 0          ; zero out the result
mov esi, list       ; move the list pointer to ESI
mov ebx, count      ; move the count into EBX
mov edi, token      ; move the token to search for into EDI 
MOV ecx, 0

LOWERCASE_ARRAY:        ;for(ecx = 0, ecx<ebx; ecx++), loops through each name
    CMP ecx, ebx
    JGE GET_OUT
    INC ecx             ;ecx++
    MOV edx, 0;         ;edx = 0

LOWERCASE_STRING:       ;while next char != 0, loop through each byte to convert to lower case
    OR [esi+edx],20h    ;change to lower case
    INC edx
    CMP [esi+edx],0     ;if [esi+edx] not zero, loop again
    JNZ LOWERCASE_STRING
    JMP LOWERCASE_ARRAY ;jump back to start case change of next name

GET_OUT:

我成功地将ArtUro变为小写,但我无法弄清楚如何遍历阵列到Bryan的地址,因为我无法按比例缩放20并且将ESI添加到其他地方。

1 个答案:

答案 0 :(得分:0)

    LEA esi, [esi+20]       

我把它放在第二个循环中的两个跳转指令之间。感谢那些阅读我的问题的人。