[Wisp-cvs] wisp/users/dig make-pe-exe.py,1.8,1.9
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-04-29 01:30:39
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv24729 Modified Files: make-pe-exe.py Log Message: place symbols for section flags Index: make-pe-exe.py =================================================================== RCS file: /cvsroot/wisp/wisp/users/dig/make-pe-exe.py,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- make-pe-exe.py 27 Apr 2003 11:44:28 -0000 1.8 +++ make-pe-exe.py 29 Apr 2003 01:30:35 -0000 1.9 @@ -256,6 +256,11 @@ e.place_symbol('!' + s + '/lineno', 0) e.place_symbol('#' + s + '/reloc', 0) e.place_symbol('#' + s + '/lineno', 0) +e.place_symbol('#.text/flags', 0x60000020) +e.place_symbol('#.istubs/flags', 0x60000020) +e.place_symbol('#.data/flags', 0xc0000040) +e.place_symbol('#.bss/flags', 0xc0000080) +e.place_symbol('#.imports/flags', 0xc0000040) e.align(512) e.place_symbol('!aout/header-end') ## generate import structures |