Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/realstealthninja/assembly-101

My journey to the inital frontier
https://github.com/realstealthninja/assembly-101

assembly assembly-language learning-by-doing x86 x86-64 yasm yasm-assembler

Last synced: 21 days ago
JSON representation

My journey to the inital frontier

Awesome Lists containing this project

README

        

# Assembly
Assembly is one of the fundamental pillars of programming and is considered as a middle level language.
It is a misconception to call C a low level language since the only low level language is machine code(Binary).
Assembly has various flavours based on the system you are using it on.
in no particular order:
- x86\_64
- arm
- MIPS

I will be following this excellent [pdf document](http://www.egr.unlv.edu/~ed/assembly64.pdf) which goes into great depth about assembly
It seems only fitting to follow a textual approach to such a process

# Assembling
To assemble the source code to machine code we must use an assembler
in this instance ill be using YASM a popular assembler for Unix like systems.