×
Create a new article
Write your page title here:
We currently have 176 articles on Open Eggbert. Type your article name above or click on one of the titles below and start writing!



Open Eggbert
176Articles

Assembly Language: Difference between revisions

m (Robertvokac moved page Assembly Language for x86 to Assembly Language without leaving a redirect)
No edit summary
Line 1: Line 1:
== What is Assembly Language ==
Only the x86 instruction set is mostly described here.
 
== Basics ==
 
=== What is Assembly Language ===
Assembly language is a low-level programming language for a computer or other programmable device.
 
=== What is the difference between the Assembly language and high-level programming languages ===
Each assembly language is specific for a given computer architecture (instruction set).
 
High level programming language are mostly portable across multiple systems.
 
=== How is the source code of an high-level programming language converted to the executable machine code ===
Via Compiler
 
=== How is the source code of an assembly language converted to the executable machine code ===
Via an Assembler
 
=== List examples of some assemblers ===
NASM, MASM.


== External links ==
== External links ==
https://www.tutorialspoint.com/assembly_programming/index.htm
https://www.tutorialspoint.com/assembly_programming/index.htm

Revision as of 20:31, 8 November 2024

Only the x86 instruction set is mostly described here.

Basics

What is Assembly Language

Assembly language is a low-level programming language for a computer or other programmable device.

What is the difference between the Assembly language and high-level programming languages

Each assembly language is specific for a given computer architecture (instruction set).

High level programming language are mostly portable across multiple systems.

How is the source code of an high-level programming language converted to the executable machine code

Via Compiler

How is the source code of an assembly language converted to the executable machine code

Via an Assembler

List examples of some assemblers

NASM, MASM.

External links

https://www.tutorialspoint.com/assembly_programming/index.htm