To use this file copy and paste this:
// #URL-lib "http://pin1.org/forthlib/flb/General/dump.flb" into BV Terminal 3
or here to download.
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
// This is an extended memory dump (BDUMP)
// does a 256 (16 x 16) block
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Full Contents of File
: ascii.
        dup  32  127  between
        if  emit  else  drop  [char]  .  emit  then
;       
: ascii16.
        dup  16  +  swap
        do
                i  c@  ascii.
        loop
;               
: hex16.
        dup  16  +  swap
        do
                i  c@  <#  #  #  #>  stype  space
        loop
;
: dumpHead
        ."  Address    "
        16  for
                i  <#  #  #  #>  stype  space
        next
;
variable  basehold               
: <0>bdump
        base  @  basehold  !  hex
        dumpHead  cr
        16  for
                dup  <#  #  #  #  #  #  #  #  #  #>  stype  space
                dup  hex16.  dup  space  ascii16.
                16  +  cr
        next
        basehold  @  base  !
;