This is an old revision of the document!


Collection of fragments for development

Within this article we want to provide further information and snippets about our development on HyperbolaBSD.

Assembler instructions

C / C++ amd64/x86_64 at&t amd64/x86_64 intel
dec val = –val; decl $r11; dec r11;
inc val = ++val; incl $r11; inc r11;
mov val = 1; movl $1, %r11; mov r11, 1;
add val += 1; addl $1, %r11; add r11, 1;