[Wisp-cvs] wisp/users/dig make-pe-exe.py,1.22,1.23
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-05-10 17:37:24
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv9035 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.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- make-pe-exe.py 10 May 2003 17:33:06 -0000 1.22 +++ make-pe-exe.py 10 May 2003 17:37:21 -0000 1.23 @@ -150,8 +150,8 @@ h.emit_wyde_sum(['#aout/subsys-version-major']) h.emit_wyde_sum(['#aout/subsys-version-minor']) h.emit_tetra(0) - # %aout/image-end must be a multiple of #aout/memory-align - h.emit_tetra_sum(['%aout/image-end']) + # &aout/image-end must be a multiple of #aout/memory-align + h.emit_tetra_sum(['&aout/image-end', '#rva']) # !aout/header-end must be a multiple of #aout/file-align h.emit_tetra_sum(['!aout/header-end']) h.emit_tetra(0) # checksum @@ -177,7 +177,7 @@ h.emit_tetra_sum(['#aout/heap-commit-size']) h.emit_tetra(0) # loader flags - obsolete h.emit_tetra_sum(['#aout/dict-entry-count']) - h.emit_tetra_sum(['%export-table']) + h.emit_tetra_sum(['&export-table', '#rva']) h.emit_tetra_sum(['#export-table/size']) h.emit_tetra_sum(['%.imports']) h.emit_tetra_sum(['#.imports/memsz']) |