Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bitsandbytes #299

Merged
merged 2 commits into from
Apr 13, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fixes #298 simload code precedence
  • Loading branch information
TG9541 committed Apr 13, 2020
commit 34185763655bd1fc6139b7a22a3c9e8044db8eaf
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