Binary , char. , "2", , , , , - id 2, no.2, caculate , char....
, , , .
, , :
1. 1
2.add 1
3.
insctrction, ....
? , , - conbination of 0 1 to
, . , 0001 , 0010 , 0011 , - :
0001 000000001
0010 000000001
0011 000000101(000000101 is a location where you store the stuffs in
)
, , :
0001 -> load
0010 -> add
0011 -> store
...
load 1
add 1
store 5
! (, ~)
you can see when you translate it, 0001 is not really a number, 00000001 is. therefore, 0001 is just a designation, and the assembly is used to replace a cahr type note for better reading. 00000001 is really a number, and you can write it in any other form, but the match for the decimal is 1, since hex is also 1 :)
Ailrk source
share