Add assembly content (#6641)
* asm * Update src/data/roadmaps/game-developer/content/assembly@AaRZiItRcn8fYb5R62vfT.md --------- Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/6655/head
parent
34cdd8c79a
commit
29a4dc25b0
1 changed files with 3 additions and 1 deletions
@ -1,3 +1,5 @@ |
||||
# Assembly |
||||
|
||||
**Assembly** is a low-level programming language, often used for direct hardware manipulation, real-time systems, and to write performance-critical code. It provides a strong correspondence between its instructions and the architecture's machine-code instructions, since it directly represents the specific commands of the computer's CPU structure. However, it's closer to machine language (binary code) than to human language, which makes it difficult to read and understand. The syntax varies greatly, which depends upon the CPU architecture for which it's designed, thus Assembly language written for one type of processor can't be used on another. Despite its complexity, time-intensive coding process and machine-specific nature, Assembly language is still utilized for speed optimization and hardware manipulation where high-level languages may not be sufficient. |
||||
**Assembly** is a low-level programming language, often used for direct hardware manipulation, real-time systems, and to write performance-critical code. It provides a strong correspondence between its instructions and the architecture's machine-code instructions, since it directly represents the specific commands of the computer's CPU structure. However, it's closer to machine language (binary code) than to human language, which makes it difficult to read and understand. The syntax varies greatly, which depends upon the CPU architecture for which it's designed, thus Assembly language written for one type of processor can't be used on another. Despite its complexity, time-intensive coding process and machine-specific nature, Assembly language is still utilized for speed optimization and hardware manipulation where high-level languages may not be sufficient. |
||||
|
||||
- [@video@Code walkthrough of a game written in x64 assembly](https://www.youtube.com/watch?v=WUoqlp30M78) |
Loading…
Reference in new issue