C200HBAT09 Omron, C200HBAT09 Datasheet - Page 48

no-image

C200HBAT09

Manufacturer Part Number
C200HBAT09
Description
C200H REPLACEMENT BATTERY
Manufacturer
Omron
Datasheet

Specifications of C200HBAT09

Rohs Compliant
NO
Leaded Process Compatible
No
Peak Reflow Compatible (260 C)
No
BASIC Language
34
DEF/INT/SNG/DBL/STR
Statement
DEF USER Statement
DIM Statement
This statement may define either numeric or string functions. If a type is spe-
cified in the function name, the value of the expression is forced to that type
before it is returned to the calling statement.
If a type is specified in the function name and the argument type does not
match, an error will occur.
Purpose:
Format:
Remarks:
Any variable names beginning with the <letter(s)> listed will automatically be
assigned to the specified variable type.
The “”, “!”, and “$” declaration characters take precedence over a DEF
<type> statement.
If no type declaration statements are encountered, BASIC assumes all vari-
ables without declaration characters to be single-precision variables.
Example:
All variables beginning with A, B, C, D, and X will be integer variables.
Purpose:
Format:
Remarks:
Any number of DEF USR statements may appear in a program to redefine
subroutine starting addresses, thus allowing access to as many subroutines
as necessary.
Program Example:
Purpose:
Format:
100
120
130
110
To declare variable types as integer, single-precision, double-
precision, or string
DEF <type><letter>[-<letter>]
[<letter>[-<letter>]]...
<type> is INT, SNG, DBL, or STR
DEFINT A-D, X
To specify the starting address of an assembly language subrou-
tine that will be called via the USR function
DEF USR [<digit>] = <offset>
<digit> is an integer from 0 to 9. The digit corresponds to the
USR routine number whose address is being specified. If <digit>
is omitted, DEF USR0 is assumed.
<offset> is the starting address of the USR routine.
DEF USR1=&H2100
POKE &H2100, &H39
A=USR1 (A)
PRINT A
To specify the maximum values for array variable subscripts and
allocate storage accordingly
DIM <variable>(<subscripts>)
[ ,<variable>(<subscripts>)]...
<variable> is a legal variable name.
Section 4-2

Related parts for C200HBAT09