shithub: rgbds

ref: 6c1dd85c9a742589d2142be72257a7380a4786dd
dir: /doc/asm/if.htm/

View raw version
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
	<TITLE>xAsm IF, ELSE, ENDC</TITLE>
        <link rel="stylesheet" type="text/css" href="../style.css">
</HEAD>

<BODY>
<I><H2>IF<BR>
ELSE<BR>
ENDC
</H2></I>
<HR>

<P>These three commands is used to conditionally assemble parts of your file. It is a powerful feature commonly used in macros.<BR>
<BR>
<TABLE BORDER=0 BGCOLOR="Black" CELLPADDING=8 WIDTH="50%">
<TR>
	<TD><FONT COLOR="#00FF00">
<PRE>IF   2+2==4
PRINTT    "2+2==4\n"
ELSE
PRINTT    "2+2!=4\n"
ENDC</PRE>
</FONT></TD>
</TR>
</TABLE>
<P>The ELSE block is optional. IF/ELSE/ENDC-blocks can be nested.<BR>

<H3>See also:</H3>
<UL>
<LI><A HREF="expr_int.htm">Integer and Boolean expressions</A>
</UL>

<BR><HR>
<FONT SIZE="-1"><I><P ALIGN=RIGHT>Last updated 21 June 1997 by <A HREF="mailto:[email protected]">Carsten Sorensen</A></P></I></FONT>