mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
27 lines
1.2 KiB
HTML
27 lines
1.2 KiB
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 DB, DW</title>
|
|
<link rel="stylesheet" type="text/css" href="../style.css">
|
|
</head>
|
|
<body>
|
|
<h1>DB, DW</h1>
|
|
<p><dfn>DB</dfn> defines a list of bytes that will be stored in the final image. Ideal for tables and text.</p>
|
|
<pre>DB 1,2,3,4,"This is a string"</pre>
|
|
<p>Alternatively you can use <dfn>DW</dfn> to store a list of words. Strings are not allowed as arguments to DW.</p>
|
|
<p>You can also use DB and DW without arguments. This works exactly like “DS 1” and “DS 2” respectively. Consequently DB and DW can be used in a WRAM0/WRAMX/HRAM/VRAM/SRAM section.</p>
|
|
<h1>See also:</h1>
|
|
<ul>
|
|
<li><a href="expr_int.htm">Integer and Boolean expressions</a>
|
|
<li><a href="expr_fix.htm">Fixed-point expressions and functions</a>
|
|
<li><a href="expr_str.htm">String expressions, functions and formatting</a>
|
|
<li><a href="ds.htm">Declaring variables in a RAM section</a>
|
|
<li><a href="miscfunc.htm">Other functions</a>
|
|
</ul>
|
|
|
|
<hr>
|
|
<p>Last updated 02 July 1997 by <a href="mailto:surfsmurf@matilde.demon.co.uk">Carsten Sorensen</a></p>
|
|
</body>
|
|
</html>
|