Intro To Assembly Language
Intro To Assembly Language
Intro To Assembly Language
Outline
A users view of computer systems What is assembly language?
Relationship to machine language
Directly influenced by the instruction set and architecture of the processor (CPU)
C
result++;
class_size = 45; mask1 &= 128;
result
class_size,45 mask1,128
add
marks,10
marks += 10;
mov
sum += x + y + z; mov add add add mov
size,AX
AX,sum AX,x AX,y AX,z sum,AX
Assembly Language inc mov and add result class_size,45 mask,128 marks,10