Jump to content
SSForum.net is back!

Recommended Posts

Posted
lol he is talking about ASM, as in !@#$%^&*embly, as in the lowest level of programming before you are doing hand !@#$%^&*embly.

is that where you write a basic outline of the program?

 

eg fior a card reader that opns a door where 3+ clerence and no lock is on is needed to enter:...

 

 

DO WHILE card in reader

IF clearence=3+

IF not locked

Else

IF door locked

THEN

Do not open door

End IF

THEN

Open door

Else

Do not open door

End IF

End Do

SSCC Desert Storm Owner
SSforum Admin

Posted

!@#$%^&*embly is the lowest level of programming language, every programming high level language converts its code to !@#$%^&*embly, then that code it's "!@#$%^&*embled" into machine code.

 

!@#$%^&*embly uses machine registers. (eax, ebx, ecx, edx, esi, edi...)

 

Ex of !@#$%^&*embly code:

 

Add two numbers

 

.data

num1 dd 0

num2 dd 0

 

.code

start:

mov num1, 5

mov num2, 5

mov eax, num1

add num2, eax

end start

 

Result is 10, it's in num2.

 

-nintendo64

Guest
This topic is now closed to further replies.
×
×
  • Create New...