Want to learn and master x86-64 Assembly?

Join Exercism’s x86-64 Assembly Track for access to 29 exercises with automatic analysis of your code and personal mentoring, all 100% free.

Explore exercises

About x86-64 Assembly

default rel

section .rodata
msg: db "Assembly is awesome!", 0

section .text
global hello
hello:
    lea rax, [msg]
    ret

Key Features of x86-64 Assembly


x86-64 Assembly

Widely Used

x86-64 has been the dominant instruction set for personal computer CPUs since 2010.

Fast

As an assembly language, x86-64 cannot be beaten in pure execution speed.

Cross-platform

x86-64 has been adopted by AMD, Intel and VIA for their CPUs.

Stable

With an enormous install base relying on stability, changes since introduction have been minimal.

Powerful

x86-64 powers the most capable desktop CPUs in the world.

Detailed documentation

Given its wide-spread and critical application, x86-64 has been exactingly documented.

Get mentored the x86-64 Assembly way

Every language has its own way of doing things. x86-64 Assembly is no different. Our mentors will help you learn to think like a x86-64 Assembly developer and how to write idiomatic code in x86-64 Assembly. Once you've solved an exercise, submit it to our volunteer team, and they'll give you hints, ideas, and feedback on how to make it feel more like what you'd normally see in x86-64 Assembly - they'll help you discover the things you don't know that you don't know.

Learn more about mentoring

Community-sourced x86-64 Assembly exercises

The x86-64 Assembly track on Exercism has 29 exercises to help you write better code. Discover new exercises as you progress and get engrossed in learning new concepts and improving the way you currently write.

See all x86-64 Assembly exercises
x86-64 Assembly

Get started with the x86-64 Assembly track

The best part, it’s 100% free for everyone.