Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- N_NIMCALL(NI, syswrite_1003)(NI arg1, void* arg2, NI arg3) {
- NI result;
- result = 0;
- asm( "syscall"
- " : "=a" result\n"
- " : "a" 1, \n"
- "D" arg1,
- "S" arg2,
- "m" arg2,
- "d" arg3
- " : "memory", "cc", "rcx", "r11"; \n"
- );
- return result;
- }
Advertisement
Add Comment
Please, Sign In to add comment