Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in assembly

Is there a programming language "below" Assembly? [closed]

Profiling high-performance Haskell code

haskell assembly profiling

What is the 'asmlinkage' modifier meant for?

c assembly linux-kernel

Using Assembly Language in C/C++

Is it possible to include inline assembly in Go code?

go assembly inline-assembly

What is the difference between unconditional branch and unconditional jump (instructions in MIPS)?

assembly mips

Is there syntax highlighting for assembly in Sublime Text 2?

Where are expressions and constants stored if not in memory?

NASM Vs GAS (Practical differences)

Stack allocation, padding, and alignment

c gcc assembly x86 stack

Algorithm for finding the smallest power of two that's greater or equal to a given value [duplicate]

c++ algorithm assembly

What does `rep ret` mean?

What registers are preserved through a linux x86-64 function call

Does it make any sense to use the LFENCE instruction on x86/x86_64 processors?

Where to learn x64 assembly from? [closed]

assembly 64-bit fasm

What does MOV EAX, DWORD PTR DS:[ESI] mean and what does it do?

assembly x86

How to Detect the Number of Physical Processors / Cores on Windows, Mac and Linux

"enter" vs "push ebp; mov ebp, esp; sub esp, imm" and "leave" vs "mov esp, ebp; pop ebp"

What does the "rep stos" x86 assembly instruction sequence do?

assembly x86

Why is gcc allowed to speculatively load from a struct?