ref: 7d6fac9c009730e73ce5b28e06c1de9adfafe1e4
dir: /doc/asm/db.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 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 BSS/HRAM/VRAM 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 BSS section</a> <li><a href="miscfunc.htm">Other functions</a> </ul> <hr> <p>Last updated 02 July 1997 by <a href="mailto:[email protected]">Carsten Sorensen</a></p> </body> </html>