aboutsummaryrefslogtreecommitdiff
path: root/forth/forth/free.fs
blob: e4974a637b1bee925af15f3aa8e2d676f871b635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"
;