aboutsummaryrefslogtreecommitdiff
path: root/forth/forth/free.fs
diff options
context:
space:
mode:
Diffstat (limited to 'forth/forth/free.fs')
-rw-r--r--forth/forth/free.fs25
1 files changed, 25 insertions, 0 deletions
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"
+;
+