aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/lib/forth2012/core/erase.frt
blob: eb23f3b52eec194e95423864e6a914a596e9f393 (plain)
1
2
3
4
5
6
\ fill a memory area with zeros

: erase  ( addr n -- )
  0 fill
;