Assembly Language Flashcards
is a low-level programming language that is closely tied to the architecture of a particular computer’s CPU.
Assembly
Assembly language provides a more __________ format
human-readable
Enumerate the history of assembly in order
- Early Computing
- Development of Assemblers
- Proliferation and Standardization
- The Rise of High-level languages
- Assembly Language today
Year of Early Computing
1940s - 1950s
Year of Development of Assemblers
1950s-1960s
Year of Proliferation and Standardization
1960s-1970s
Year of The Rise of High-level languages
1970s-1980s
Year of Assembly Language Today
Present
The First Assembly language is credited to ___________.
Kathleen Booth
In what year does the first assembly language credited to Kathleen Booth?
1947
The reason why the first assembly language is credited to Kathleen Booth
ARC2 computer
It wasn’t quite the assembly language we know today, but it was a step away from raw machine code.
EARLY COMPUTING (1940s - 1950s)
This was a significant shift, making programming slightly less cryptic.
DEVELOPMENT OF ASSEMBLERS
( 1950s - 1960s)
EDSAC stands for
Electronic Delay Storage Automatic Calculator
What was the name of the computer that incorporated an assembler in 1949?
Electronic Delay Storage Automatic Calculator (EDSAC)
What type of codes did the assembler in EDSAC use to represent machine code instructions?
mnemonics
When did EDSAC integrate an assembler into its system?
1949.
What was the purpose of mnemonics in the assembler of EDSAC?
represent machine code instructions.
As computing become more widespread, different computer manufacturers developed their own assembly languages tailored to their hardware architectures
PROLIFERATION AND STANDARDIZATION
(1960s - 1970s)
What are examples of assembly languages that resulted from efforts to standardize?
ALGOL Assembly and ALM.
Which language was developed as a result of standardization efforts?
ALGOL Assembly
The introduction of high-level languages like FORTRAN and COBOL in the 1960s started to challenge assembly language’s dominance
THE RISE OF HIGH - LEVEL LANGUAGES (1970s - 1980s)
What was the impact of the introduction of high-level languages like FORTRAN and COBOL on assembly language’s dominance?
challenge assembly language’s dominance.
What advantages did high-level languages such as FORTRAN and COBOL offer over assembly language?
greater readability and portability
They introduce FORTRAN and COBOL in what year?
1960s
Name some specific areas where Assembly Language remains significant.
embedded systems, real-time systems, and operating system development.
Why has Assembly Language become less prevalent in mainstream software development?
due to the availability of higher-level programming languages.
Year: it has become less prevalent in mainstream software development.
ASSEMBLY LANGUAGE TODAY (PRESENT)
Enumerate 12 Mnemonics
- ADD
- SUB
- MUL
- DIV
- PUSH
- RET
- CMP
- JMP
- INC
10.DEC
11.AND,OR,XOR - CALL
what can we use to make a comment in Assembly Language?
;
3 sections
data section
bss section
text section
section.text
global_start
_start:
is found in what section?
text section
What are the 4 Registers
- 8 - bit Registers
- 16 - bit registers
- 32- bit registers
- 64- bit registers
Enumerate 8 - bit registers
- AL
- BL
- CL
- DL
Enumerate 16 - bit registers
- AX
- BX
- CX
- DX
Enumerate 32 - bit registers
- EAX
- ECX
- ECX
- EDX
Enumerate 64 - bit registers
- RAX
- RBX
- RCX
- RDX
What are the two parts of instruction
- name of instruction/ mnemonics
- operands
It has two parts, first is the name of the instruction/mnemonic and the second are the operands.
Instructions
What are the 4 Data Types
- Bytes
- Word
- Doubleword
- Quadword
Doubleword is also known as _________
Dword
Quadword is also known as ____________
Qword
DATA TYPES: 8 - bits
Bytes
DATA TYPES: 16 - bits
Word
DATA TYPES: 32 - bits
Doubleword (Dword)
DATA TYPES: 64 - bits
Quadword (Qword)
DATA TYPES: 0-255
BYTES
DATA TYPES: 0-65535
WORD
DATA TYPES: 0-4,249,967,295
DOUBLEWORD
DATA TYPES: 0-18,446,744,073,709,551,615
QUADWORD
DATA TYPES: db 10
BYTES
DATA TYPES: dw 1000
WORD
DATA TYPES: dd 100000
DOUBLEWORD
DATA TYPES: dq 100000
QUADWORD
Define a section for initialized data
section.data
Define a section for executable code
section.text
Declare start as the entry point
_start:
%eax: 1
sys_exit
%eax: 2
sys_fork
%eax: 3
sys_read
%eax: 4
sys_write
%eax: 5
sys_open
%eax: 6
sys_close
IDE IN ASSEMBLY LANGUAGE
- VS Code
- SASM
- WinAsm Studio
- Online Compilers:
Online Compilers:
- OneCompiler
- TutorialsPoint