6.2.1350 ERASE CORE EXT

( addr u -- )

If u is greater than zero, clear all bits in each of u consecutive address units of memory beginning at addr.

ContributeContributions

deadmarshalavatar of deadmarshal [300] Example2023-06-13 11:34:41

Usage Example:

10 constant N
variable counts N allot
counts N erase 
counts N dump

ruvavatar of ruv

variable counts N allot
counts N erase

This is incorrect, see 3.3.3.3 Variables. And for example, take a look at a possible implement for variable.

Correct variants are as follows:

create counts N allot
counts N erase

or

align here N allot constant counts
counts N erase
Reply New Version