View Single Post
  #4  
Old 04-13-2018, 06:30
dosprog dosprog is offline
Friend
 
Join Date: Feb 2018
Posts: 114
Rept. Given: 0
Rept. Rcvd 17 Times in 16 Posts
Thanks Given: 33
Thanks Rcvd at 146 Times in 74 Posts
dosprog Reputation: 17
About format of integers:
Library uses very simple bin->hex converter with fixed format of output.
Thus bin byte converted into 3-char string 0zz,
word into 5-char string 0zzZZ,
dword into 0zzZZzzZZ.
This is done specifically, for the convenience of reading the disassembler listing.

For example,

Quote:
@100048BE:80F908 cmp cl,008
@100048C3:B908000000 mov ecx,000000008
But the resulting string can be postprocessed by the caller
with removing the leading zeros of numbers or adding suffixes "h" to them.


Quote:
Originally Posted by Jupiter View Post
PE Compact?
Sure

Quote:
Originally Posted by Jupiter View Post
at least static .lib version?
There are all kinds of plans.
In this thread, there is no point in hurrying, it has become obsolete over twenty years ago.

Now such a library should have the option "x64", but I still do not take it, time is not enough.

I used this library a couple of times, - the project for which it was preparing, did not go ..



Last edited by dosprog; 04-13-2018 at 10:42.
Reply With Quote