Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/realstealthninja/assembly-101
- Owner: realstealthninja
- Created: 2024-01-01T13:23:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-05T15:52:25.000Z (about 1 year ago)
- Last Synced: 2024-11-26T06:08:03.197Z (3 months 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
- MIPSI 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.