<!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> dict_minimum.asm </title>
<meta name="keywords" content="amforth programming language Forth ATmega ATMEL">
<meta name="description" content="amforth - laguage Forth for ATMEL ATmega">
<!-- AUTOINCLUDE START "Page/Head.en.ihtml" DO NOT REMOVE -->
<link rel="StyleSheet" href="../../../../Web/CSS/MLAB.css" type="text/css" title="MLAB Basic Style">
<link rel="StyleSheet" href="../../../../Web/CSS/MLAB_Print.css" type="text/css" media="print">
<link rel="shortcut icon" type="image/x-icon" href="../../../../Web/PIC/MLAB.ico">
<script type="text/javascript" src="../../../../Web/JS/MLAB_Menu.js"></script>
<!-- AUTOINCLUDE END -->
</head>
<body lang="en">
<!-- AUTOINCLUDE START "Page/Header.en.ihtml" DO NOT REMOVE -->
<!-- ============== HEADER ============== -->
<div class="Header">
<script type="text/javascript">
<!--
SetRelativePath("../../../../");
DrawHeader();
// -->
</script>
<noscript>
<p><b> JavaScript is required for including of the header </b></p>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
<!-- AUTOINCLUDE START "Page/Menu.en.ihtml" DO NOT REMOVE -->
<!-- ============== MENU ============== -->
<div class="Menu">
<script type="text/javascript">
<!--
SetRelativePath("../../../../");
DrawMenu();
// -->
</script>
<noscript>
<p><b> JavaScript is required for including of the menu </b><p>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
<!-- ============== TEXT ============== -->
<div class="Text">
<h1> dict_minimum.asm </h1>
<p>
<input type=button onClick="history.back()" value="Back">
<input type=button onClick="history.forward()" value="Forward">
<a href="../WordList.en.html">Jump to Vocabulary</a>
</p>
<pre>
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; header
; +--1+x--++--2--+--2----0+x...--
; | VOC | L | XT | PF
; +-------#-----+-----+----....--
; VOC (flags may be inverted to be flash friendly)
; Bit
; 7 6 5 4-0
; I U U Length
; I = Immediate
; U = Unused
; Length = length of word name (1..31)
; Length number of bytes, filled to next cell
; L
; Link to previos Dictionary entry or zero for first entry
; XT
; Address of Executable Code
; PF
; Parameter Field (List of XT, Constant Value etc)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
.include "words/f_cpu.asm"
.include "words/state.asm"
.include "words/base.asm"
.include "words/g_in.asm"
.include "words/sharptib.asm"
.include "words/tib.asm"
.include "words/pad.asm"
.include "words/emit.asm"
.include "words/emitq.asm"
.include "words/key.asm"
.include "words/keyq.asm"
.include "words/slashkey.asm"
.include "words/dp.asm"
.include "words/head.asm"
.include "words/here.asm"
.include "words/allot.asm"
.include "words/abort.asm"
.include "words/literal.asm"
.include "words/comma.asm"
.include "words/g_mark.asm"
.include "words/g_resolve.asm"
.include "words/l_mark.asm"
.include "words/l_resolve.asm"
.include "words/if.asm"
.include "words/else.asm"
.include "words/then.asm"
.include "words/begin.asm"
.include "words/while.asm"
.include "words/repeat.asm"
.include "words/until.asm"
.include "words/again.asm"
.include "words/do.asm"
.include "words/loop.asm"
.include "words/plusloop.asm"
.include "words/docreate.asm"
.include "words/create.asm"
.include "words/does.asm"
.include "words/colon.asm"
.include "words/colon-noname.asm"
.include "words/semicolon.asm"
.include "words/rightbracket.asm"
.include "words/leftbracket.asm"
.include "words/variable.asm"
.include "words/constant.asm"
.include "words/user.asm"
.include "words/backslash.asm"
.include "words/lparenthesis.asm"
.include "words/recurse.asm"
.include "words/immediate.asm"
.include "words/compile.asm"
.include "words/brackettick.asm"
.include "words/decimal.asm"
.include "words/hex.asm"
.include "words/bl.asm"
.include "words/edp.asm"
.include "words/heap.asm"
.include "words/turnkey.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;
.include "words/starslashmod.asm"
.include "words/slashmod.asm"
.include "words/starslash.asm"
.include "words/uslashmod.asm"
.include "words/ustarslashmod.asm"
.include "words/negate.asm"
.include "words/slash.asm"
.include "words/mod.asm"
.include "words/abs.asm"
.include "words/min.asm"
.include "words/max.asm"
;;;;;;;;;;;;;;;;;;;;;;
.include "words/hld.asm"
.include "words/hold.asm"
.include "words/l_sharp.asm" ; <#
.include "words/sharp.asm"
.include "words/sharp_s.asm"
.include "words/sharp_g.asm" ; #>
.include "words/sign.asm"
.include "words/dot.asm"
.include "words/digit.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
.include "words/sliteral.asm"
.include "words/scomma.asm"
.include "words/itype.asm"
.include "words/icount.asm"
.include "words/cr.asm"
.include "words/space.asm"
.include "words/count.asm"
.include "words/type.asm"
.include "words/tick.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
.include "words/handler.asm"
.include "words/catch.asm"
.include "words/throw.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
.include "words/char-skip.asm"
.include "words/accept.asm"
.include "words/refill.asm"
.include "words/char.asm"
.include "words/number.asm"
.include "words/parse.asm"
.include "words/char-scan.asm"
.include "words/source.asm"
.include "words/slashstring.asm"
.include "words/word.asm"
.include "words/quit.asm"
.include "words/pause.asm"
.include "words/cold.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
.include "words/sp0.asm"
.include "words/rp0.asm"
.include "words/depth.asm"
.include "words/interpret.asm"
.include "words/ver.asm"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
.include "words/noop.asm"
.include "words/unused.asm"
.include "words/value.asm"
.include "words/to.asm"
.include "words/edefer-fetch.asm"
.include "words/edefer-store.asm"
.include "words/rdefer-fetch.asm"
.include "words/rdefer-store.asm"
.include "words/udefer-fetch.asm"
.include "words/udefer-store.asm"
.include "words/do-defer.asm"
.include "words/find.asm"
.include "words/defer-store.asm"
.include "words/defer-fetch.asm"
</pre>
<p>
<input type=button onClick="history.back()" value="Back">
<input type=button onClick="history.forward()" value="Forward">
<a href="../WordList.en.html">Jump to Vocabulary</a>
</p>
</div>
<!-- AUTOINCLUDE START "Page/Footer.en.ihtml" DO NOT REMOVE -->
<!-- ============== FOOTER ============== -->
<div class="Footer">
<script type="text/javascript">
<!--
SetRelativePath("../../../../");
DrawFooter();
// -->
</script>
<noscript>
<p><b> JavaScript is required for including of the footer </b></p>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
</body>
</html>