Keil™, An ARM® Company

µVision® User's Guide

Enter

SyntaxDescription
Enter type address = expr , expr ...Changes the contents of memory starting at address using expressions (expr) of the specified data type.


The Enter command lets you change the contents of memory starting at the specified address. You may enter the following data types.

TypeDescription
CHARA signed or unsigned character.
DOUBLEA double precision floating-point number.
FLOATA floating-point number.
INTA signed or unsigned integer.
LONGA signed or unsigned long integer.

You may specify multiple expressions, separated by commas ( , ), which are converted into the specified data types and finally stored in consecutive addresses in memory.

Example
>E CHAR x:0 = 1,2,"-µVision3-"                   /* Enter Characters */
>D x:0
 X:0000  01 02 2D 64 53 63 6F 70 65 2D 00 00 00 00 00 00   ..-µVision3-......

>E FLOAT x:0x2000 = 3,4,15.2,0.33                /* Enter Float      */