[Wisp-cvs] wisp/users/dig make-pe-exe.py,1.19,1.20
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-05-06 16:43:36
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv2479 Modified Files: make-pe-exe.py Log Message: align %aout/image-end to 512 byte boundary Index: make-pe-exe.py =================================================================== RCS file: /cvsroot/wisp/wisp/users/dig/make-pe-exe.py,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- make-pe-exe.py 6 May 2003 16:35:54 -0000 1.19 +++ make-pe-exe.py 6 May 2003 16:43:33 -0000 1.20 @@ -336,6 +336,8 @@ e.paste(-1, sections[s]) # increase memory_boundary memory_boundary = roundup(memory_boundary + sections[s].memsz(), 4096) + +e.align(512) e.place_symbol('%aout/image-end', memory_boundary) e.place_symbol('#coff/magic', 0x014C) # I386MAGIC |