[Wisp-cvs] wisp/users/dig make-pe-exe.py,1.50,1.51
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-05-13 21:35:19
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv1751 Modified Files: make-pe-exe.py Log Message: use clearer syntax Index: make-pe-exe.py =================================================================== RCS file: /cvsroot/wisp/wisp/users/dig/make-pe-exe.py,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- make-pe-exe.py 13 May 2003 21:30:55 -0000 1.50 +++ make-pe-exe.py 13 May 2003 21:35:10 -0000 1.51 @@ -129,8 +129,8 @@ h[::4] = '&_start #rva', '&.text #rva', h[::4] = '&.data #rva' # not present in PE32+ (?) # #aout/image-base must be multiple of 64ki - h.emit_tetra_sum(['#aout/image-base']) - h.emit_tetra_sum(['#aout/memory-align']) + h[::4] = '#aout/image-base' + h[::4] = '#aout/memory-align' # #aout/file-align must be a power of 2 in range of [512 ... 64Ki] h.emit_tetra_sum(['#aout/file-align']) h.emit_wyde_sum(['#aout/os-version-major']) |