Patti the Programmer loads the EBX register with a pointer v…
Patti the Programmer loads the EBX register with a pointer value as shown below:static:iValue : int16 := 0;dMallocAddress : dword;begin progExample; mov( &iValue, EBX ); malloc( @size( int8 ) );mov( EAX, dMallocAddress ); mov( dMallocAddress, EBX ); // Patti uses [EBX] end progExample;After she has finished using EBX, must Patti the Programmer FREE EBX?
Read Details