From 2f83a0bea9da444e3d70569eba3d6847ca02be03 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Fri, 21 Sep 2018 21:59:17 +0200 Subject: ... --- forth/forth/free.fs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 forth/forth/free.fs (limited to 'forth/forth/free.fs') diff --git a/forth/forth/free.fs b/forth/forth/free.fs new file mode 100644 index 0000000..e4974a6 --- /dev/null +++ b/forth/forth/free.fs @@ -0,0 +1,25 @@ +\ ******************************************************************* +\ * +\ Filename: free.txt * +\ Date: 06.01.2014 * +\ FF Version: 5.0 * +\ Copyright: Mikael Nordman * +\ Author: Mikael Nordman * +\ ******************************************************************* +\ FlashForth is licensed according to the GNU General Public License* +\ ******************************************************************* + +\ MCU with eeprom +: .free + cr ." Flash:" flash hi here - u. ." bytes" + cr ." Eeprom:" eeprom hi here - u. ." bytes" + cr ." Ram:" ram hi here - u. ." bytes" +; + +\ MCU without eeprom +: .free + decimal + cr ." Flash:" flash hi here - u. ." bytes" + cr ." Ram:" ram hi here - u. ." bytes" +; + -- cgit v1.2.3