Is there really no way to print an ascii string in assembly to standard output without using up all four general purpose registers?
|
|
|||||||
|
|
|
Right, it takes three registers for the parameters plus one for the system call number... But, x86 has
|
||||||||||||
|
|
|
You could write a function that takes the needed arguments from the stack. |
||
|
|
|
Well.. If you linked against libc you can call But yeah. The syscall interface is pass-by-register. Sorry. Don't be so shocked. It'd be the same way if you were doing a function call on some calling conventions. For many platforms that's pretty standard. (Including all amd64 compilers I know of...) |
||
|
|
