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