»nintendo64 Posted May 7, 2004 Report Posted May 7, 2004 Good read for programmers. http://www.onlamp.com/pub/a/onlamp/2004/05...egreatcode.html -nintendo64
Dav Posted May 7, 2004 Report Posted May 7, 2004 cool SQL is a very simple language, but php source can get a little confusing wten you need to isolate echos etc.
50% Packetloss Posted May 7, 2004 Report Posted May 7, 2004 lol he is talking about ASM, as in !@#$%^&*embly, as in the lowest level of programming before you are doing hand !@#$%^&*embly.
50% Packetloss Posted May 7, 2004 Report Posted May 7, 2004 oh yah, why did you change your forum name akai?
»SD>Big Posted May 7, 2004 Report Posted May 7, 2004 because I changed my in-game namehis nickname is Suzy
Dav Posted May 9, 2004 Report Posted May 9, 2004 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 IFEnd Do
»nintendo64 Posted May 9, 2004 Author Report Posted May 9, 2004 !@#$%^&*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 .datanum1 dd 0num2 dd 0 .codestart:mov num1, 5mov num2, 5mov eax, num1add num2, eaxend start Result is 10, it's in num2. -nintendo64
FranKllr Posted May 12, 2004 Report Posted May 12, 2004 Its very funny to make an infinite loop that write a letter into a ascii file in ASM $ $ $ $ You know that happend when you drive is full in just a min <_<
Recommended Posts