File:  [gforth] / gforth / arch / r8c / lauftext.fs
Revision 1.5: download - view: text, annotated - select for diffs
Wed Dec 10 15:44:12 2008 UTC (15 years, 4 months ago) by pazsan
Branches: MAIN
CVS tags: HEAD
Cleared distribution conditions

\ lauftext
\ this file is in the public domain

rom

Create text
," GNU Forth EC R8C -- Microprocessor -- "
Create ledtable 1 c, 2 c, 4 c, 8 c, 4 c, 2 c,
Variable /text

: lauftext  task
  BEGIN  text count /text @ over mod /string
         16 min dup >r lcdpage lcdtype
         r@ 16 < IF  text 1+ 16 r@ - lcdtype  THEN
         rdrop 1 /text +!
         /text @ 6 mod ledtable + c@ led!
         6 adc@ 2/ ms
  AGAIN ;

ram

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>