> Hi,
>
> Is there a tool available which can convert plan 9 a.out executables
> to plan 9 assembly code? I'd like to know how the C compiler stores
> arguments for a system call on the stack for x86.
>
> 8c -S does not help, since all it displays is: `call print', instead
> of what instructions are actually executed when print is called.
>
> Regards,
> Anant
if i understand you correctly, that's because print is in a library
and is called not inline. you can use acid on the executable to
asm(print)
which disassembles code starting at print.
- erik