Skip to content

Commit

Permalink
Merge pull request #299 from TG9541/bitsandbytes
Browse files Browse the repository at this point in the history
Bitsandbytes
  • Loading branch information
TG9541 authored Apr 13, 2020
2 parents 3e4861c + 0e36484 commit d153069
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

STM8 eForth is a very compact interactive Forth system for STM8 µCs. It's much like a tiny operating system with a built-in compiler-interpreter that interacts with the user through a serial console (e.g. using [e4thcom](https://wiki.forth-ev.de/doku.php/en:projects:e4thcom) or a serial terminal). Simple multi-tasking features allow running a control application in the background while tuning parameters (or even change the program!) through the CLI.

The [release](https://github.com/TG9541/stm8ef/releases) provides a library, STM8 register definitions and a plug-in system for board support. Core features include compiling Forth to Flash memory, autostart-operation, and all that's needed for creating a custom Forth core. The release process automatically runs a [self-test in the uCsim STM8S simulator](https://travis-ci.org/TG9541/stm8ef) with Travis-CI.
The [release](https://github.com/TG9541/stm8ef/releases) provides binaries, a library, STM8 register definitions and a plug-in system for board support. Core features include compiling Forth to Flash memory, autostart-operation and all that's needed for creating a custom Forth core. The release process automatically runs a [self-test in the uCsim STM8S simulator](https://travis-ci.org/TG9541/stm8ef) with Travis-CI.

[![STM8EF Wiki](https://user-images.githubusercontent.com/5466977/28994765-3267d78c-79d6-11e7-927f-91751cd402db.jpg)](https://github.com/TG9541/stm8ef/wiki)

Expand Down
2 changes: 1 addition & 1 deletion STM8S207RB/globconf.inc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
WORDS_LINKCHAR = 1 ; Link char out words: DIGIT <# # #S SIGN #> str hld HOLD
WORDS_LINKMISC = 0 ; Link composing words of SEE DUMP WORDS: >CHAR _TYPE dm+ .ID >NAME

WORDS_EXTRASTACK = 0 ; Link/include stack core words: rp@ rp! sp! sp@ DEPTH
WORDS_EXTRASTACK = 1 ; Link/include stack core words: rp@ rp! sp! sp@ DEPTH
WORDS_EXTRADEBUG = 0 ; Extra debug words: SEE
WORDS_EXTRACORE = 1 ; Extra core words: =0 I
WORDS_EXTRAMEM = 1 ; Extra memory words: B! 2C@ 2C!
Expand Down
8 changes: 4 additions & 4 deletions tools/simload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ uart1_flowctrl=1
run
EOF

export boardcode="main.fs"
export boardihx="$object-forth.ihx"
export boardihx="out/$object/$object-forth.ihx"
export boardcode="$object/board.fs"
if [ ! -f "$boardcode" ]; then
echo "local $boardcode not found ..."
export boardcode="$object/board.fs"
export boardihx="out/$object/$object-forth.ihx"
export boardcode="main.fs"
export boardihx="$object-forth.ihx"
echo "... trying $boardcode"
fi

Expand Down

0 comments on commit d153069

Please sign in to comment.