ref: 6d1c60b0a6ad8160e92f1739cf5d92cdd61b4237
dir: /doc/asm/equ.htm/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>xAsm EQU</title> <link rel="stylesheet" type="text/css" href="../style.css"> </head> <body> <h1>EQU</h1> <p>EQUates are constant symbols. They can for example be used for things such as bit-definitions of hardware-registers.</p> <pre>DONUT_ISGOOD EQU $01 DONUT_ISBAD EQU $02</pre> <p>Note that a colon (:) following the label-name is not allowed. EQUates can be <a href="export.htm">exported and imported</a>. They don't change their value during the link process.</p> <h1>See also:</h1> <ul> <li><a href="expr_int.htm">Integer and Boolean expressions</a> </ul> <hr> <p>Last updated 21 June 1997 by <a href="mailto:[email protected]">Carsten Sorensen</a></p> </body> </html>