From: <di...@us...> - 2003-05-10 18:40:54
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv29005 Modified Files: make-pe-exe.py Log Message: dropped the obsolete %_start symbol Index: make-pe-exe.py =================================================================== RCS file: /cvsroot/wisp/wisp/users/dig/make-pe-exe.py,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- make-pe-exe.py 10 May 2003 18:34:34 -0000 1.25 +++ make-pe-exe.py 10 May 2003 18:40:51 -0000 1.26 @@ -212,7 +212,6 @@ text = Linkie('<') # ia32 text.place_symbol('&_start') -text.place_symbol('%_start') text.emit_byte(0x68); text.emit_tetra(-11 % 0x100000000) # push -11 text.emit_byte(0xe8); text.emit_tetra_sum(['&GetStdHandle@kernel32'], delta = -4, relative = 1) # call GetStdHandle text.emit_byte(0x68); text.emit_tetra(0) # push 0 |