|
I mean could a single binary file run in both Win32 and Linux i386 ?
Started by est on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
, 1, 1, 0 ; e_ident times 8 db 0 dw 2 ; e_type dw 3 ; e_machine dd 1 ; e_version dd _start ; e_entry dd phdr - $$ ; e_phoff dd 0 ; e_shoff dd 0 ; e_flags dw ehdrsize ; e_ehsize dw phdrsize ; e_phentsize....
|
|
Is there a way to execute a flat binary image in Linux, using a syntax something like:
nasm -f bin -o foo.bin foo.asm runbinary foo.bin
Started by computergeek6 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Entry dd phdr - $$ ; e_phoff dd 0 ; e_shoff dd 0 ; e_flags dw ehdrsize ; e_ehsize dw phdrsize ; e", 1, 1, 1, 0 ; e_ident times 8 db 0 dw 2 ; e_type dw 3 ; e_machine dd 1 ; e_version dd _start ; e dd filesize....
|