hi  ( -- addr )

published: 29 January 2023 / updated 29 January 2023

Lire cette page en français

 

vocabulary: forth

Leave the high limit of the current data space.

Example:

\ 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" 
;