[Wisp-cvs] wisp/users/dig make-pe-exe.py,1.38,1.39
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-05-11 07:35:50
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv1990 Modified Files: make-pe-exe.py Log Message: a few references to %foo converted into references to &foo Index: make-pe-exe.py =================================================================== RCS file: /cvsroot/wisp/wisp/users/dig/make-pe-exe.py,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- make-pe-exe.py 11 May 2003 07:17:41 -0000 1.38 +++ make-pe-exe.py 11 May 2003 07:35:47 -0000 1.39 @@ -324,7 +324,6 @@ sections[s].set_secondary_origin(memory_boundary - base_address) e.place_symbol('!' + s) e.place_symbol('&' + s, memory_boundary) - e.place_symbol('%' + s, memory_boundary - base_address) # process sizes e.place_symbol('#' + s + '/memsz', sections[s].memsz()) e.place_symbol('#' + s + '/filesz', roundup(sections[s].filesz(), 0x200)) @@ -333,8 +332,7 @@ # 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('&aout/image-end', memory_boundary) e.place_symbol('#coff/magic', 0x014C) # I386MAGIC e.place_symbol('#coff/nscns', len(sectnames)) |