QW1 TechTools, QW1 Datasheet - Page 145

PROGRAMMER PIC MCU QUICKWRITER

QW1

Manufacturer Part Number
QW1
Description
PROGRAMMER PIC MCU QUICKWRITER
Manufacturer
TechTools
Series
QuickWriter™r
Type
QuickWriterr
Datasheets

Specifications of QW1

Contents
MCU Programmer with In-Circuit Serial Programming Cable and Optional GANG Adapters
For Use With/related Products
PIC Micro® MCU
For Use With
CBL-ICSP - CABLE PROG QUICKWRITER SERIALQW-4SSOP18 - ADAPTER QUICKWRITER 4GANG 18SSOPQW-4SSOP28 - ADAPTER QUICKWRITER 4GANG 28SSOPQW-4SO8/14W - ADAPT QUICKWRTR 4GANG 8/14SOIC WQW-4SO8/14N - ADAPT QUICKWRTR 4GANG 8/14SOIC NQW-4SOIC18 - ADAPTER QUICKWRITER 4GANG 18SOICQW-4ZIF18 - ADAPTER QUICKWRITER 4-GANG 18ZIFQW-4SOIC28 - ADAPTER QUICKWRITER 4GANG 28SOICQW-4PLCC44 - ADAPTER QUICKWRITER 4GANG 44PLCCQW-4ZIF40/28 - ADAPT QUICKWRITER 4GANG 40/28ZIFMP-ZIF14 - ADAPTER QUICKWRITER 14-PIN ZIFMP-SOIC8/14 - ADAPTER QUICKWRITER 8/14-SOICMP-SSOP18 - ADAPTER QUICKWRITER 18-SSOPMP-SSOP28 - ADAPTER QUICKWRITER 28-SSOPMP-14000 - ADAPTR QUICKWRTR PIC14000 28-PINMP-SOIC18 - ADAPTER QUICKWRITER 18-SOICMP-SOIC28 - ADAPTER QUICKWRITER 28-SOICMP-PLCC44 - ADAPTER QUICKWRITER 44-PIN PLCCMP-ZIF18/28 - ADAPTER QUICKWRITER 18/28PIN ZIFMP-ZIF40 - ADAPTER QUICKWRITER 40-PIN ZIF

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
QW152
Manufacturer:
Laird Technologies IAS
Quantity:
135
© 2007 TechTools
4.1.10 Local Labels
4.1.11 Default_Symbol_Tables
Here are some examples of valid symbols:
The following code demonstrates how to use the local label :loop for common
looping purposes within two globally-labeled routines.
and must contain only letters, numbers, underscores, and colons. Further, if you’re
labeling an address (such as the start of a routine), the label must start at the beginning
of the line.
By default, labels are global, which means that they can be "seen" from anywhere in your
program. Sometimes, however, you may want to use a local label, which can only be
"seen" within a limited part of your program (the area in which the local labe l can be
seen starts at the preceding global label, and continues up to the following global label).
Local labels have the same syntax rules as global labels, except they must begin with a
colon (:), and must be referenced with a colon. Local labels can be referenced from
outside their normal area by referring to preceding global label name:local label name.
A Local label can be called from outside its usual area as demonstrated in the line:
When the assembler is started, its symbol table is initialized with various PIC symbols,
such as C for the Carry register, RA for Port A, etc. This saves you from having to define
min_count
maximum_count
begin
Routine1
:loop
Routine2
:loop
Routine3
jmp
mov
mov
call
djnz
ret
mov
call
djnz
ret
mov
jmp
Routine2:loop
=
=
min_count,#05h
count,#100
send_a (local label :loop)
count,:loop
count,#200
send_b (local label :loop)
count,:loop
count,#250
Routine2:loop
20h
21h
(jump to line 6)
(global label Routine1)
(jump to line 2)
(global label Routine2)
(jump to line 6)
(global label R outine3)
(jump to line 6)
ClearView Assembler
139

Related parts for QW1