Answers for "assembly"

44

assembly

synonym of assembly is pain
Posted by: Guest on February-13-2021
1

assembly this

what is assembly ?
basicly its a programming language like any other one BUT 
if you know computers or know programming... your function is made out of 
some instructions like maybe (c = a + b) or some thing like that right ?

assembly is the same but to write the same c = a + b you have to consider
talking to the cpu it self and tell it some thing like that 

instruction 0 : i want you to get the value of "a"
instruction 1 : now get me the value of "b"
instruction 2 : add both values together 
instruction 3 : store the result in "c"

or some thing like that so its really going to make your code much longer
but with much more details and you may be clever enough that you make your
program faster than the same one made with other languages like python Java 
and C++ {fun fact C++ contain assembly code in it if you want to use it}

why use assembly ?
for fun.... yeah thats the only reason you may want to do it 
making efficient programs with it is easy but time consuming 

or if you want to make your own operating system / bootloader 

but for me its fun :)

also here is example code for that c = a + b {instructions part}

mov eax,dword ptr [a] ;load the value of (a) in register called (eax)
add eax,dword ptr [b] ;add the value of (b) to the same register
mov dword ptr [c],eax ;put the value of the register (eax) into the variable (c)

and here we have it! Thanks for reading :)
Posted by: Guest on October-19-2021
18

assembly

Do you really want to go there????
Posted by: Guest on May-25-2021
6

assembly

Trust me, don't go in there
Posted by: Guest on August-10-2021
4

learn assembly

So help me I WILL put funny things on a TI-84
Posted by: Guest on January-11-2021
2

assembly

It usually takes 10 minutes just to code "Hello World" in assembly.

Python = <o/  *dab* <o/
Posted by: Guest on September-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language