mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
22 lines
893 B
HTML
22 lines
893 B
HTML
<!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:surfsmurf@matilde.demon.co.uk">Carsten Sorensen</a></p>
|
|
</body>
|
|
</html>
|