aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/msp430/amforth.asm
blob: 6138394079548f9f223eb5e93a77ebf014cf03c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

.msp430

.include "macros.asm"       ; registers, macros, and header structure
.include "ram.inc"          ; RAM Leyout

.org AMFORTH_START         ; start address of Forth kernel
.include "init.asm"
.include "drivers.asm"
.include "amforth-interpreter.asm"
.include "itc430core.asm"   ; code primitives
.include "itc430hilvl.asm"

; now include application specific parts
.include "dict_appl.inc"