aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/appl/launchpad430/dict_appl.inc
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2017-08-19 12:15:28 +0200
committerDimitri Sokolyuk <demon@dim13.org>2017-08-19 12:15:28 +0200
commit67d25d837ac55f28a366c0a3b262e439a6e75fc3 (patch)
treedf7715c7724c5935ab87c807f3b8b4ef529315e3 /amforth-6.5/appl/launchpad430/dict_appl.inc
parente0d6784e89dba33226c0edb815bb974486fa7c48 (diff)
Add AmForth
Diffstat (limited to 'amforth-6.5/appl/launchpad430/dict_appl.inc')
-rw-r--r--amforth-6.5/appl/launchpad430/dict_appl.inc66
1 files changed, 66 insertions, 0 deletions
diff --git a/amforth-6.5/appl/launchpad430/dict_appl.inc b/amforth-6.5/appl/launchpad430/dict_appl.inc
new file mode 100644
index 0000000..bb735cd
--- /dev/null
+++ b/amforth-6.5/appl/launchpad430/dict_appl.inc
@@ -0,0 +1,66 @@
+; These words not part of the essentials
+; but written in assembly language / notoation
+; for one of the following reason
+; * they use data available at compile time only (e.g. build-info)
+; * they are useful during core debugging (e.g. .S)
+; * they cannot be implemented in high level forth and
+; are not necessary for the core system (e.g. D+)
+;
+
+; various tools
+.include "words/dot-s.asm"
+;.include "words/dump.asm"
+; bleeding edge
+;.include "words/build-info.asm"
+
+.include "words/mcu-sr-fetch.asm"
+
+; additional environment queries
+;.include "words/env-usersize.asm"
+
+; next some words that may be useful in certain
+; applications only. Including them by default
+; would make the image too large to fit into 8kB
+; all other words are written in forth and have to
+; be uploaded as such.
+
+; location of some configuration stacks
+;.include "words/cfg-order.asm"
+;.include "words/cfg-recognizer.asm"
+
+;; generic tools
+;.include "words/n_to_r.asm"
+;.include "words/n_r_from.asm"
+;.include "words/get-stack.asm"
+;.include "words/set-stack.asm"
+
+;; wordlist management.
+;.include "words/infodp.asm"
+;.include "words/wordlist.asm"
+;.include "words/set-order.asm"
+;.include "words/get-order.asm"
+;.include "words/set-current.asm"
+;.include "words/forth-wordlist.asm"
+
+;; double cell arithmetics
+;.include "words/d-plus.asm"
+;.include "words/d-minus.asm"
+;.include "words/d-2slash.asm"
+;.include "words/d-2star.asm"
+
+;; some (external) assembly required
+;.include "words/code.asm"
+;.include "words/end-code.asm"
+
+;; compiler
+;.include "words/bracketcompile.asm"
+
+;; legacy words
+;.include "words/word.asm"
+;.include "words/count.asm"
+
+;; bit level operations
+;.include "words/bm-set.asm"
+;.include "words/bm-clear.asm"
+;.include "words/bm-test.asm"
+