I know this one's ancient but...
|
Can anyone here teach me how to construct an if-then-else statement in turbo assembly? An example would be greatly appreciated...Thanks in advance :) |
Re: I know this one's ancient but...
Link |
by otakuman_geo
on 2006-04-07 01:52:17
|
Here: Assuming you're already on the part where you're going to write the if-statement, for example, if you want to print an error message if a condition is not satisfied, type: if(your condition) printf("that's not in the condition dumb ****!\n"); |