[Wisp-cvs] wisp/users/dig make-pe-exe.py,1.54,1.55
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-05-15 22:08:14
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv15713 Modified Files: make-pe-exe.py Log Message: don't put a section at RVA 0 Index: make-pe-exe.py =================================================================== RCS file: /cvsroot/wisp/wisp/users/dig/make-pe-exe.py,v retrieving revision 1.54 retrieving revision 1.55 diff -u -d -r1.54 -r1.55 --- make-pe-exe.py 15 May 2003 22:04:19 -0000 1.54 +++ make-pe-exe.py 15 May 2003 22:08:10 -0000 1.55 @@ -308,6 +308,7 @@ base_address = 0x00400000 base_address = roundup(base_address, 0x1000) # to page boundary memory_boundary = base_address +memory_boundary += 0x1000 # skip the first page for s in sectnames: # file alignment e.align(512) |