I'm trying to run a few asm lines on my 64-bits (Ubuntu 12.04) Just to execute the reboot syscall. I can compile it, but when running nothing happends.
Here is the code :
section .text
global _start
_start:
mov eax,88
mov ebx,0xfee1dead
mov ecx,672274793
mov edx,0x89abcdef
mov esi,0
int 0x80
I compile it using :
nasm -f elf reboot.asm
Then I link it using :
ld -m elf_i386 -s -o reboot reboot.o
I have some questions concerning this behavior :
- If I'm using it correctly, is running this 32bit code on a 64-bit system the origin of the problem ?
- I'm wondering about passing NULL to the %esi register, is this argument wrong for the reboot syscall ?