Home | History | Annotate | Download | only in tests
      1 [bits 32]
      2 add [byte  ebp*8+06h],ecx ;db 01,0c,0ed,06 probably wrong
      3 dd 90909090h
      4 add [dword ebp*8+06h],ecx ;db 01,0c,0ed,06,0,0,0  OK
      5 dd 90909090h
      6 add ecx,[byte  ebp*8+06h] ;db 03,0c,0ed,06 probably wrong
      7 dd 90909090h
      8 add ecx,[dword ebp*8+06h]
      9 dd 90909090h
     10 add ecx,[ebp*8+06h]
     11 dd 90909090h
     12 add ecx,[byte ebx*8+06h]  ;db 03,0c,0dd,06 probably wrong
     13 dd 90909090h
     14 add ecx,[dword ebx*8+06h]
     15 dd 90909090h
     16 add ecx,[ebx*8+06h]
     17 dd 90909090h
     18 
     19