Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv15324
Modified Files:
make-pe-exe.py
Log Message:
align base_address to page boundary before processing
Index: make-pe-exe.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/make-pe-exe.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- make-pe-exe.py 11 May 2003 05:52:56 -0000 1.33
+++ make-pe-exe.py 11 May 2003 06:14:21 -0000 1.34
@@ -315,6 +315,7 @@
# paste sections together
e.align(512)
base_address = 0x00400000
+base_address = roundup(base_address, 0x1000) # to page boundary
memory_boundary = base_address
for s in sectnames:
# file alignment
|