lshift
, rshift
, 2*
and 2/
are implemented.
invert!
inverts the content of an address.
-!
is implemented.
macro
allows you to enter the macro definition mode, while target
gets you back to code generation.
drop
followed by an integer leads to very efficient code.
+
and -
have been further optimized.
::
allow efficient W register parameter passing.
>w
and w>
respectively pop the top-of-stack into w and push w on
the stack. They can be used to implement efficient return value handling.
or
now uses bit-set instructions when it makes sense, as well as or!
,
and!
and /and!
.
negate
and invert
have been optimized.
recurse
is implemented the traditional way.
>input
and >output
change a pin direction by working on the
corresponding tris register.
include
.
over
was not interrupt-safe.
make interactive
, you will be dropped into an interactive
mode where you can disassemble words using see
, words
, map
and
dis
.
silver.fs
, contains some code that runs on a
smartcard.
eecreate
and ee,
manipulate EEPROM content
ee@
selected the flash instead of the EEPROM
high
, low
, high?
and toggle
are aliases for bit-set
,
bit-low
, bit-set?
and bit-toggle
intended to work on ports
Add library files libfetch.fs
and libstore.fs
which were forgotten in
previous versions and are used by generator.fs
.
until
and /until
(control structures)
clrwdt
(accessible from Forth)
pin-a
, pin-b
, pin-c
, pin-d
, pin-e
(pin mapping)
bit-clear
is renamed to bit-clr