Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
I use the
__asm__("\n\t movq %%register_name,%0" : "=r"(i));
for reading register's value intolong long i
. It works fine for %rdi, %rsi and stack, but it doesn't work for %rdx, %rcx, %r8 and %r9 - it returns garbage values. Can anybody give me a hint what's wrong?