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: about 1 year ago
JSON representation
My journey to the inital frontier
- Host: GitHub
- URL: https://github.com/realstealthninja/assembly-101
- Owner: realstealthninja
- Created: 2024-01-01T13:23:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-05T15:52:25.000Z (over 2 years ago)
- Last Synced: 2025-01-25T21:25:52.707Z (over 1 year ago)
- Topics: assembly, assembly-language, learning-by-doing, x86, x86-64, yasm, yasm-assembler
- Language: Assembly
- Homepage:
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.