Posted by LaZaRuS on January 15, 2000, 8:10 pm
62.156.39.171
Greetings everyone there were some people who needed help using the pre-tag and what the use of it is: A deadlisting is - for me - the disassembled ASM code of a file, or at least parts of it.
For example this one:
:0046C38B FF570C call [edi+0C] ;; Do something
:0046C38E 8B55FC mov edx, dword ptr [ebp-04] ;; Do sth else
:0046C391 8B830C030000 mov eax, dword ptr [ebx+0000030C]
:0046C397 83C024 add eax, 00000024 ;; add somethingIsn't that hard to read?
But if you write it in this way:
<pre>
:0046C38B FF570C call [edi+0C] ;; Do something
:0046C38E 8B55FC mov edx, dword ptr [ebp-04] ;; Do sth else
:0046C391 8B830C030000 mov eax, dword ptr [ebx+0000030C]
:0046C397 83C024 add eax, 00000024 ;; add something
</pre>it looks like this
:0046C38B FF570C call [edi+0C] ;; Do something
:0046C38E 8B55FC mov edx, dword ptr [ebp-04] ;; Do sth else
:0046C391 8B830C030000 mov eax, dword ptr [ebx+0000030C]
:0046C397 83C024 add eax, 00000024 ;; add somethingand is much better readable
Regards
LaZ