wowkster / learning-asm

Exercises I did to teach myself x86 assembly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Learning Assembly

This repository contains a number of coding exercises I did to practice programming in x86 assembly

Required Tools

To assemble and run the code in this repository, you will need to use the linux nasm assembler (WSL 2 is recommended on windows)

NASM

For assembling our code into an object file

$ sudo apt install nasm

BinUtils

For static standalone linking

$ sudo apt install binutils

GCC

For linking some of our programs with libc

$ sudo apt install gcc gcc-multilib libc6:i386

About

Exercises I did to teach myself x86 assembly


Languages

Language:Assembly 89.9%Language:Shell 10.1%