Asmcomp, Asmprgm, Assignment – Texas Instruments TI-86 User Manual

Page 282

Advertising
background image

270

Chapter 20: A to Z Function and Instruction Reference

20ATOZ.DOC TI-86, Chap 20, US English Bob Fedorisko Revised: 02/13/01 2:42 PM Printed: 02/13/01 3:05 PM Page 270 of 118

AsmComp(

CATALOG

AsmComp(

AsciiAssemblyPrgmName

,

HexAssemblyPrgmName

)

Compiles an assembly language program written in
ASCII and stores the hex version. The compiled hex
version, which uses about half the storage space of the
ASCII version, cannot be edited.

When you execute the ASCII version, the TI

-86 compiles

it each time. To speed up execution, use

AsmComp(

to

compile the ASCII version once and then execute the
hex version each time you want to run the program.

AsmPrgm

CATALOG

AsmPrgm

Must be used as the first line of an assembly language
program.

Assignment:

=

1

г

=

д

equationVariable

=

expression

Stores expression to equationVariable, without
evaluating expression. (If you use X to store an
expression to a variable, the expression is evaluated and
then the result is stored.)

y1=2 x

2

+6 x

N

5 b

Done

The built-in equation variables used for
graphing are case-sensitive. Use

y1

, not

Y1

.

aug(

LIST OPS menu

MATRX OPS menu

aug(

listA

,

listB

)

Returns a list consisting of listB appended
(concatenated) to the end of listA. The lists can be real
or complex.

aug({1,

L

3,2},{5,4}) b

{1

L

3 2 5 4}

Advertising