About linux : Linux-syscall-documentation
Question Detail I am working on a program that requires a lot of work in x86_64 assembly. Where is the official documentation on the available syscalls for 64-bit Linux? Most of the documentation I...
HowtoFusion - Linux Howtos and Tutorials.
Question Detail I am working on a program that requires a lot of work in x86_64 assembly. Where is the official documentation on the available syscalls for 64-bit Linux? Most of the documentation I...
Question Detail I am learning to do Assembly Language for the first time and I was confused about it. I just want to change the string displayed in the Assembly Language program below to...
Question Detail I am testing assembly program and calling printf function from the assembly program and I kept on getting following error: hello_world.o: In function `main’: hello_world.c:(.text+0x11): undefined reference to `printf’ collect2: error: ld...
Question Detail This question already has answers here: What does “int 0x80” mean in assembly code? (9 answers) Why can’t local variable be used in GNU C basic inline asm statements? (4 answers) syscall...
Question Detail I wrote a simple “Hello world” in assembly under debian linux: ; Define variables in the data section SECTION .data hello: db ‘Hello world!’,10 helloLen: equ $-hello ; Code goes in the...
Question Detail This question already has answers here: Convert from ascii to integer in AT&T Assembly (1 answer) NASM Assembly convert input to integer? (2 answers) Is it possible to multiply by an immediate...
Question Detail This question already has answers here: Convert from ascii to integer in AT&T Assembly (1 answer) NASM Assembly convert input to integer? (2 answers) Is it possible to multiply by an immediate...
Question Detail This question already has answers here: Which header file of system call numbers is correct? (2 answers) What happens if there is no exit system call in an assembly program? (1 answer)...
Question Detail This question already has answers here: Which header file of system call numbers is correct? (2 answers) What happens if there is no exit system call in an assembly program? (1 answer)...
Question Detail This question already has answers here: Assembling 32-bit binaries on a 64-bit system (GNU toolchain) (2 answers) Closed 22 days ago. Now the code is here: .code32 #PURPOSE – Given a number,...