Amiga Machine Language Guide
Amiga Machine Language Guide
Table of Contents.
------------------
1. Introduction
1.1 Why machine code?
1.2 A look into the Amiga's memory
1.2.1 RAM,ROM,hardware register
1.2.2 Bits,bytes and words
1.2.3 Number systems
1.3 Inside the Amiga
1.3.1 Components and libraries
1.3.2 Memory
1.3.3 Multi-tasking
5 Hardware registers
5.1 Checking for special keys
5.2 Timing
5.3 Reading the mouse or joystick
5.4 Tone production
5.5 Hardware registers overview
8 Advanced programming
8.1 Supervisor mode
8.2 Exception programming
Appendix
Overview of library functions
Overview of the MC68000 Instructions
CHAPTER 1
---------
[Link].
--------------
Before you tackle machine language,you should take a closer
look at several things that are vital to machine language
programming.
[Link],ROM,Hardware Register.
-------------------------------
Random Access Memory,referred to as RAM,allows information to
be placed in it and then withdrawn at a later [Link] memory
consists of electronic componants that retain data only while
the computor is turned on(or until power failure).
So that the computor is able to do something when it is first
turned on,such as promting the Workbench or Kickstart disk,a
program has to remain in memory when the power is off.A memory
type which can retain data in memory without any power being
[Link] second memory type is known as ROM.
ROM;
ROM stands for Read Only Memory,indicating that data can only
be read from this memory,not written to [Link] Amiga contains
a ROM,that loads the Workbench or Kickstart disk into [Link]
first version of the Amiga did not contain the Kickstart in
ROM.
PROM;
One variation of ROM is the PROM,or Programmable Read Only
[Link] special type of ROM can actually be programmed
[Link] it cannot be erased once programmed,it isn't
encountered very [Link] often you will see EPROM's. or
Erasable Programmable ROM'[Link] special chips,which can be
erased with ultraviolet light,have a little window on the
surface of the chip usually covered with tape.
EEROM;
Although not available on the consumer market and much more
expensive than RAM,the EEROM(Electically Erasable ROM) offers
another alternative to programmable [Link] chips function
like RAM,except that information is not lost when the power
is turned off.
WOM;
With the birth of the Amiga,another type of memory,WOM,was
[Link] particular type of memory is Write Once Memory.
The Kickstart disk is read into this memory when the computor
is first [Link] this,no more data can be read into that
[Link] this isn't a completely new component,but
simply RAM that is locked once data has been read into it,
after which the data can only be read from that memory.
Registers;
In addition to RAM and these variations of ROM there is another
type of memory situated between those two [Link] memory
is connected to the processor through a group of peripheral
[Link] it is commonly refered to as the Hardware
Register,since the computor's hardware is managed by this
[Link]'ll go into greater detail on how to use these hardware
registers later in this book.
Lets take a closer look at the structure and use of the memory
most familiar to us,RAM.
[Link],Bytes,and Words.
--------------------------
Kilobyte;
The standard size in which memory is measured is a Kilobyte
(Kbyte).One kilobyte consists of 1024 bytes,not 1000 as you
might [Link] unusual system stems from the computor's
binary mode of operation,where numbers are given as powers of
2,including kilobytes.
To access a memory block of one kilobyte,the processor requires
10 connections which carry either one volt or zero [Link]
2^10=1024 combinations or 1024 bytes of memory,are possible.
Byte;
A byte,in turn,consists of yes/no,on/off information as well.
A byte can be one of 2^8 different values,and thus it can
represent any one of 256 [Link] individual numerical
values that make up a byte,which also are the smallest and
most basic unit encountered in any computor,are called bits
(short for binary coded digit).
A 512 kbyte memory,such as the Amiga's,contains 2^19=524288
bytes and 4194304 [Link] may seem unimaginable,but a memory
of that size has 2^4194300 different combinations.
Word;
Back to the basics...bits and bytes are sufficent to program
an eight bit processor like the 6500,since it can only work
with [Link] program a 16/32 bit processor like the Amiga's
MC68000,you'll need to know two new data forms:words,consisting
of 16 bits(the equivalent of two bytes),and long words,which
are 32 bits(the equivalent of four bytes,or 2 words).
A word can be any number between 0 and 65536,a long word can
0 to [Link] MC68000 processor can process these
gigantic numbers with a single operation.
Once in a while you need to use negative numbers as well as
positive [Link] a bit can only be 1 or 0 and not -1,an
alternative system has been [Link] a word is to have a
specific sign,the highest value digit or 15th bit in the word
(positions are always counted from zero) determines the sign
of the [Link] this method words can carry values from -32768
to +[Link] byte can range from -127 to +[Link] a byte,the
value -1 is given by $FF; in a word it's $FFFF,-2 is $FE(FFFE),
etc.
Lets stick with positive values for the time being,to aid in
the visualization of a bit in relation to its bit pattern.
Machine language does not use the familiar decimal system.
Instead,it commonly employs the binary as well as the octal and
hexadecimal number systems.
[Link] Systems.
--------------------
Lets take a look at the decimal system:its base number is 10.
This means that every digit represents a power of [Link] means
that the 246 represents 2*10^2+4*10^1+6*10^[Link] decimal system
offers a selection of 10 characters,namely 0-9.
Binary;
This procedure is different for the binary [Link] binary
system offers only two different characters:1 and [Link] the
systems base number is [Link] decimal value of 1010 would be:
1*2^3+0*2^2+1*2^1+0*2^0=2^3+2^1=8+2=10 (in decimal system)
Generally binary numbers are identified by having a percentage
symbol as a [Link] if you can determine the decimal value of
this number:110010...
Well did you get 50?.Thats the right [Link] most simple
method to arrive at this result is to simply add up the values
of the digits contained at [Link] values of the first eight digits
are as follows:
digit 8 7 6 5 4 3 2 1
value 128 64 32 16 8 4 2 1
Octal;
The octal system whose base is eight,is [Link] character set
consists of numbers 0 to [Link] decimal equivalent of the octal
number 31 is: 3*8^1+1*8^0=[Link] the octal system isn't
nearly as important as the next one...
The base number of the hexadecimal system is 16,and its character
set ranges from 0 to [Link],A would be equivalent of a decimal 10
and F would be [Link] dollar sign($) indicates a hexadecimal
[Link] binary and hexadecimal systems are the most important
numerical systems for assembly language programming.
Hex;
The hexadecimal representation of a byte ranging from 0 to 256
always has two digits:$00 to $FF.A word ranges from $0000 to $FFFF
and a longword from $00000000 to $FFFFFFFF.
Its quite easy to convert binary numbers into hexadecimal:simply
split up the binary numbers into groups of four [Link] of
these groups of four digits then corresponds to one hexadecimal
[Link] an example:
binary number %110011101111
split up %1100 %1110 %1111
result $C $E $F
thus: %110011101111=$CEF
The opposite operation is just as easy...
hexadecimal $E30D
split up $E $3 $0 $D
result %1110 %0011 %0000 %1101
thus: $E30D = %1110001100001101
This method can also be used to convert binary into octal and vice
versa,except that groups of three digits are used in that case:
octal number 7531
split up 7 5 3 1
result %111 %100 %011 %001
thus: octal 7531=%111101011001
This binary number can the be converted into hexadecimal,as well:
binary number %111101011001
split up %1111 %0101 %1001
result $F $5 $9
thus: octal 7531=$F59
The following calculation can then be used to convert the number
into the familiar decimal system:
hexadecimal $F59
split up $F $5 $9
result 15*16^2+5*16+9
thus: $F59=3929 decimal
Although this conversions are quite simple ,they can get to be
rather [Link] assemblers can ease this task somewhat:they
allow you to enter a value with '?'upon which it returns the
value in decimal and hexadecimal [Link] are even calculators
that perform number base conversions.
Often this conversion as to be performed in a program,for instance
when a number is entered by the user and then processed by the
[Link] this case the number entered,being simply a
combination of graphic symbols,is evaluated and the usually
converted into a binary number,in effect,a word or a longword.
This process is often required in reverse order,as [Link] the
computor is to display a calculated value in a specific number
system,it must first convert that number into a series of
[Link] a later chapter you will develop machine language
routines to solve these [Link] can then use these routines
in your own [Link] you still have to cover some things
that are fundamental to machine language programming on the Amiga.
[Link]-Tasking.
-------------------
The Amiga is truly an amazing machine,being capable of doing
several things at one time.A red and white ball might be bouncing
around in one window while you`re working on text in another
window and watching a clock tick away in a third.
At least that`s the impression most people get when they recieve
their first Amiga [Link],there is a catch to this:
even the Amiga as only one processor,which can really only do one
thing at a time.
The tricky part is when more than one program is running,each
program is executed part by part,and the Amiga is constantly
switching from one program back to the other [Link] the
example above,the ball would first be moved by one pixel,then
the processor would check for a text entry and if necessary display
it,after which it would move the clock`s second [Link]
procedure would be repeated over and over,as the three programs
are executed [Link] problem is,that the greater the work
load on the processor,the slower the things [Link],programs
run slower during heavy multi-tasking.
Tasks;
Each of these jobs that the Amiga has to execute are commonly
referred to has tasks...thus,[Link] multi-tasking,
each task is assigned a special time segment during which that
particular task is [Link] time segments can be controlled,
so that more time consumming programs can be allotted somewhat
more processing time.
The programmer actually doesn`t need to know how this time slicing
[Link] can write aprogram without paying any attension to
multi-tasking and then run it simultaneously with another program
running in the [Link] only restriction is that you`ll have
to start the program from the CLI with`run`,or from the Workbench.
If you execute the program from the CLI by simply typing its name,
the processor allots all the time it can get from the CLI to that
program,until the execution is [Link] the program with
run free`s the CLI for other uses while the program is being
executed.
There is another restriction regarding multi-tasking that applies
to assembler [Link] from the use of extra memory,which
must first be reserved,the hardware registers should not be
directly [Link] the library functions should be [Link]
reason for this is quite simple:
Should you,for instance,specify the printer port as the input line
and are reading data in,another task might suddenly think its
supposed to be [Link] line would thus be switched to output
and data would be written [Link] this,your program would try to
read more data in,which would not be possible.
This is an oversimplified example,but it points out the problem
[Link] real programming situations the effects of
multiple direct programming of the hardware registers can be much
more [Link] your program still needs to access the
hardware registers directly(which can have some advantages),then
make sure that the program always runs by itself.
Chapter 2.
---------
[Link] MC68000 Processor.
-----------------------
The Amiga`s MC68000 processor is a 16/32 bit processor,which means
that while it can process data of 32 bits,it"only"has a 16 bit
data bus and a 24 bit address [Link],it can access 2^24=16777216
bytes(or 16 Mbytes)of memory directly.
7.1 Megaherz;
The Amiga 68000 processor,running at 7.1 megaherz,is quite fast,
which is required for a computor with a workload as heavy as the
Amiga`[Link] Amiga also processes a number of custom chips that
greatly ease the workload of the [Link] custom chips
manage sound in/output,graphics and animation,thus freeing the
processor for calculations.
[Link].
-------------
In addition to the standard RAM,the processor contains internal
memory called [Link] are eight data registers(D0-D7),
eight address registers(A0-A7),a status register(SR),two stack
pointers,a user stack pointer,a system stack pointer(USP and SSP)
and the program counter(PC).
Register Sizes;
The data registers,the address registers,and the program counter
are all 32 bits,while the status register is 16 [Link]
registers are located dirctly in the processor so they are not
accessed the same way memory would be [Link] are special
instructions for accessing these registers.
Data Registers;
The data registers are used for all kinds of [Link] can handle
operations with bytes(8 bits)words(16 bits)and longwords(32bits).
Address Registers;
The address registers are used for storing and processing
[Link] way they can be used as pointers to tables,in which
case only words and longwords operations are possible.
Stack Pointer;
The address register A7 plays a special role:this register is
utilized as the Stack Pointer(SR)by the processor,and thus is not
recommended for normal use by the [Link] of the two
possible stacks is being pointed to depends on the present mode of
the processor,but more about that later.
The stack,to whose actual position the stack pointer is pointing,
is used to store temporary internal [Link] stack works similar
to a stack of notes on your desk:the note that was added to the
stack last is the first one to come off the [Link] type of
stack is known as LIFO(Last in,First out).There is another type of
stack,the FIFO(First in,First out)which is not used by the
processor itself.
How these registers and the SP can be manipulated,or how to work
with the stack,is presented in the next [Link] continue with
the registers for now.
Status Register;
The status register plays an important role in machine language
[Link] 16-bit quality(word)contains important
information about the processor status in 10 of its [Link] word
is divided into two bytes,the lower byte(the user byte)and the
upper byte(the system byte).The bits that signify that certain
conditions are refered to as [Link] means that when a certain
condition is present,a particular bit is set.
The user byte contains five flags,which have the following meaning
bit : 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0
name : T - S - - I2 I1 I0 - - - X N Z V C
Don't let the new terms,like mode and interupt confuse [Link]'ll
talk about these in greater detail in the chapter dealing with the
operating conditions of the processor.
[Link] Memory.
---------------------
In the standard Amiga 500's and 1000's,the processor has over 512k
of RAM [Link] Amiga 2000 has one mega-byte of RAM that can
be accessed by the [Link] does the processor access all
this memory?
If you're programming in BASIC you don't have to worry about
memory [Link] can simply enter MARKER%=1,and the value is
stored in memory by the BASIC interpreter.
In assembler,there are two ways of accomplishing this task:
1) Store the value in one of the data or address registers,or
2)Write it directly into a memory location.
To demonstrate these two methods let's get a little ahead and
introduce a machine language instruction,which is probably the
most common:[Link] its name states,this instruction moves values.
Two parameters are required with the instruction:source and
destination.
Lets see what the example from above would look like if you
utilize the MOVE instruction...
1) MOVE #1,D0
This instruction moves the value 1 into data register [Link] you
can see,the source value is always entered before the destination.
Thus,the instruction MOVE D0,#1 is not possible.
2) MOVE #1,$1000
deposits the value 1 in the memory location at $[Link] address
was arbitrarily [Link] addresses of this form won't be
used at all in assembler programs,since labels that point to a
certain address are used [Link],the more common way of
writing this would be:
...
MOVE #1,MARKER
...
MARKER:DC.W 1
MOVE VALUE,MARKER
...
...
MARKER: DC.W 1
VALUE : DC.W 1
10 A=1000
20 POKE A,1
In this example the first line assigns the value 1000 to the
variable [Link] can be done in assembler as well:MOVE.L #1000,A0.
In the assembler version the absolute value of 1000 ia stored in
the address register A0.
Line 20 doesn't assign a value to the variable A itself,but rather
to the memory location at the address stored in [Link] is an
indirect access,which is quite easy to duplicate in assembler:
...
RECORD: DC.W 2 ;number of entries -1
DC.W 1,2,3 ;elements of list
We'll use MOVE.L #RECORD,A0 to load the list into the address
register [Link] you can use MOVE (A0),D0 to pull the number of
in the list into the data [Link] access the last element of
the listonly one instruction is [Link] whole thing looks
something like this:
MOVE MARKER,D0
and
MOVE MARKER(PC),D0
or
As you can see,the generated code of the second line is two bytes
shorter than the first [Link] addition,if you were to shift this
code to the address $2000,the first version still accesses the
memory at $1100,while the second line using the PC indirect
addressing accesses memory at $2000 [Link],the program can
be transferred to almost any location.
This,then,is PROGRAM COUNTER WITH 16 BIT DISPACEMENT [Link] we
mentioned,there is also PROGRAM COUNTER WITH 8 BIT INDEX value,
which permits a second register as a distance value,also known as
offset.
There are two addressing modes [Link] two are based on
indirect [Link] offer the capability of automatically
raising or lowering the address register by one when memory is
accessed with address register indirect.
To automatically increase the register,you'd use ADDRESS REGISTER
DIRECT WITH [Link] address register raises this by the
number of bytes used AFTER accessing [Link] if you write:
MOVE.L #1000,A0
MOVE.B #1,(A0)+
MOVE.L #1000,A0
MOVE.B #1,-(A0)
MOVE.B (SP)+,D0
This way the stack pointer always points to the byte last
deposited on the [Link],again,you'll have to be careful that
an access to the stack with a word or a long word is always on an
even [Link],if you're going to deposit a byte on the stack,
either use a whole word or make sure the byte is not followed by a
JSR or [Link] JSR or BSR instructions deposit the addresses from
which they stem on the stack in the form of a long word.
In the code above,the SP is generally replaced by the address
register A7 in the program code,since this register is always used
as the [Link],you can write A7 as well as S,the resulting program
is the [Link],we recommend the use of SP,since this makes
the code somewhat easier to [Link] all,quite often you'll want
to employ your own stacks,in which case the difference between the
processor stack and your own stacks become very important.
These are the twelve ways of addressing the MC68000 processor,Here
is a summary:
No Name Format
-- ---- ------
1 data register direct Dn
2 address register direct An
3 address register indirect (An)
4 address register indirect with post-increment (An)+
5 address register indirect with pre-decrement -(An)
6 address register indirect with 16 bit displacement d16(An)
7 address register indirect with 8 bit index value 8(An,Rn)
8 absolute short xxxx.W
9 absolute long xxxxxxxx.L
10 direct #'data'
11 program counter indirect with 16 bit displacement d16(PC)
12 program counter indirect with 8 bit index value d8(PC,Rn)
[Link] Modes.
-------------------
In the previous section about registers you encountered the Status
Register(SR).The individual bits of this register reflect the
present operating condition of the [Link] differentiated
between the system byte(bits 8-15)and the user byte(bits 0-7).Now,
lets take a closer look at the system byte and its effects upon
the operation of the processor.
[Link].
----------------
Exceptions are similar to interupts on 6500 [Link] allows
stopping a program,running a sub-program,and then restarting the
stopped [Link] an exception occurs the following seps are
taken:
At this point you don't want to delve any deeper into the secrets
of exceptions,since we'd be expanding this book beyond its frame
[Link],there's one last thing to say about exceptions:the
exception routines are ended with the RTE(ReTurn from Exception)
instruction,with which the original status is restored and the
user program is continued.
[Link].
----------------
Interrupts are processed similarly to [Link] are breaks
(or interruptions)in the program which are activated through
hardware(such as a peripherical component or an external trigger).
The interrupt level is stored in bits 8-10 of the status register.
A value between 0 and 7 indicates the interrupt [Link] are
eight possible interrupts,each of which as a different [Link]
the level of this interrupt happens to be higher than the value in
the status register,the interrupt is executed,or else ignored.
When a valid interrupt occurs,the computor branches to the
corresponding routine whose address is indicated in the exception
vector table above.
The interrupts are very important if you're trying to synchronize
a program with connected [Link] this manner,a trigger(s.a the
keyboard)which is to feed the computor data,can signal the request
for a legal value using an [Link] interrupt routine then
simply takes the value [Link] method is also employed for
the operation of the serial interface(RS232).
We'll talk about the use of interrupts at a later [Link] last
thing we want to mention about interrupts at this time is that,
like exceptions,interrupt routines are terminated with the RTE
instruction.
[Link] Codes.
---------------------
When you write a program in any language,the need for a
conditional operation arises quite [Link] instance,in a BASIC
program
CMP #2,D1
CMP stands for compare and compares two operands,in this case D1
and [Link] is this operation evaluated?
For this purpose you have condition codes(CC's),which exist in the
branch instructions of machine [Link] of this,you must
specify when and where the program is to branch.
The simplest variation of the branch instruction is an
unconditional [Link] corresponding instruction is 'BRA address
',although this won't help you [Link] all,you need a
conditional branch.
To retain the result of the operation,in this case a comparrison
(CMP),several bits are reserved in the status [Link] look at
bit 2 first,which is the zero [Link] flag is set when the
result of the previous operation was zero.
To explain the relationship between CMP and the Z flag,you must
first clarify the function of the CMP [Link] this
instruction performs the subtraction of the source operand from
the destination [Link] the example above,the number 2 is
subtracted from the content of the memory cell at [Link] the
result of this subtraction is discarded,the corresponding flags
are set.
If the contents of D1 in our example above happened to be 2,the
result of the subtraction would be [Link],the Z flag would be set,
which can then be evaluated through a corresponding branch
[Link] example would then look like this:
...
CMP #2,D1 ;comparison,or subtraction
BNE UNEQUAL ;branch,if not equal(Z flag not set)
MOVE #0,D2 ;otherwise execute D2=0
UNEQUAL:
cc Condition Bits
---------------------------------------------------
T true,corresponds to BRA
F false,never branches
HI higher than C'* Z'
LS lower or same C + Z
CC,HS carry clear,higher or same C'
CS,LO carry set,lower C
NE not equal Z'
EQ equal Z
VC overflow clear V'
VS overflow set V
PL plus,positive
MI minus,negative
GE greater or equal N*V+N'*V'
LT less than N*V'+N'*V
GT greater than N*V*Z'+N'*V'*Z'
LE less or equal Z + N*V' + N'*V
CMP #2,D1
BLS SMALLER_EQUAL
...
AND #%00001111,D1 ;masks bits out
BEQ SMALLER ;branches when none of the four
; ;lower bits is set
CMP #%00001111,D1
BEQ ALL ;branches when all four bits set
run:
cmp $10,d1
bra run
end
Mnemonic Meaning
---------------------------------------------------
Bcc Label conditional branch,depends on condition
BRA Label unconditional branch(similar to JMP)
BSR Label branch to [Link] address is
deposited on stack,RTS causes return to that
address.
CHK <ea>,Dx check data register for limits,activate the
CHK instruction exception.
DBcc Reg,Label check condition,decrement and branch
JMP Label jump to address(similar to BRA)
JSR Label jump to [Link] address is
deposited on stack,RTS causes return to that
address.
NOP no operation
RESET reset peripherals(caution!)
RTE return from exception
RTR return with loading of flags
RTS return from subroutine(after BSR and JSR)
Scc <ea> set a byte to -1 when condition is met
STOP stop processing(caution!)
TRAP #n jump to an exception
TRAPV check overflow flag,the TRAPV exception
run:
pea subprogram ;address on the stack
jsr subprogram ;subprogram called
move.l (sp)+,d1 ;get a long word from stack
; illegal ;for assemblers without
;debuggers
subprogram:
move.l (sp),d0 ;return address in D0
rts ;and return
end
ADD source,destination
Mnemonic Meaning
--------------------------------------------------------------
ADD source,dest binary addition
ADDA source,An binary addition to a address register
ADDI #n,<ea> addition with a constant
ADDQ #n,<ea> fast addition of a constant which can
be only from 1-8
ADDX source,dest addition with transfer in X flag
CLR <ea> clear an operand
CMP source,dest comparison of two operands
CMPA <ea>,An comparison with an address register
CMPI #n,<ea> comparison with a constant
CMPM source,dest comparison of two memory operands
DIVS source,dest sign-true division of a 32 bit
destination by a 16 bit source operand.
The result of the division is stored in
the LO word of the destination,the
remainder in the HI word.
DIVU source,dest division without regard to sign,similar
to DIVS
EXT Dn sign-true expansion to twice original
size(width)data unit
MULS source,dest sign-true multiplication of two words
into one long word
MULU source,dest multiplication without regard to sign,
similar to MULS
NEG <ea> negation of an operand(twos complement)
NEGX <ea> negation of an operand with transfer
SUB source,dest binary subtraction
SUBA <ea>,An binary subtraction from an address
register
SUBI #n,<ea> subtraction of a constant
SUBQ #n,<ea> fast subtraction of a 3 bit constant
SUBX source,dest subtraction with transfer in X flag
TST <ea> test an operand and set N and Z flag
Mnemonic Meaning
-----------------------------------------------------------------
ABCD source,dest addition of two BCD numbers
NBCD source,dest negation of a BCD number(nine
complement)
SBCD source,dest subtraction of two BCD numbers
Mnemonic Meaning
-----------------------------------------------------------------
AND source,dest logic AND
ANDI #n,<ea> logic AND with a constant
EOR source,dest exclusive OR
EORI #n,<ea> exclusive OR with a constant
NOT <ea> inversion of an operand
OR source,dest logic OR
ORI #n,<ea> logic OR wuth a constant
TAS <ea> check a byte and set bit 7
Mnemonic Meaning
----------------------------------------------------------------
BCHG #n,<ea> change bit n(0 is changed to 1 and vice
versa)
BCLR #n,<ea> clear bit n
BSET #n,<ea> set bit n
BTST #n,<ea> test bit n,result is displayed in Z
flag
Mnemonic Meaning
----------------------------------------------------------------
AS n,<ea> arithmetic shift to the left(*2^n)
ASR n,<ea> arithmetic shift to the right(/2^n)
LSL n,<ea> logic shift to the left
LSR n,<ea> logic shift to the right
ROL n,<ea> rotation left
ROR n,<ea> rotation right
ROXL n,<ea> rotation left with transfer in X flag
ROXR n,<ea> rotation right with transfer in X flag
%00010000 =16
The answer in this case is not 2.5 as you might [Link] result
such a division is always a whole number,since any decimal places
are [Link] you use the DIV instruction instead of shifting,
you'll retain the digits to the right of the decimal [Link]
shifting is somewhat faster,and shifting can also receive long
words as results.
After explaining the principle of shifting,you still need to know
why more than two instructions are required for the [Link]
this is because there are several different types of shifting.
First,you must differentiate between shifting and [Link]
shifting,the bit that is added to the left or the right side is
always a [Link] rotating,it is always a specific value that is
[Link] means that with the ROR or the ROL instructions,the
bit that is taken out on one side is the one that is inserted on
the [Link] the ROXR and the ROXL instructions this bit takes a
slight detour to the X [Link],the content of the flag is
inserted into the new bit,while the old bit is loaded into the
flag.
Shifting as well,has two variations:arithmetic and logical
[Link]'ve already dealt with logical [Link] this
variation,the inserted bit is always a zero,and the extracted bit
is deposited in the C flag and in the X flag.
Although the highest bit,which always represents the sign,is
shifted in arithmetic shifting,the sign is still retained by ASR.
This has the advantage that when these instructions are used for
division,the operation retains the correct sign(-10/2 equals-5).
However,should an overflow or underflow cause the sign to change,
this change is noted in the V flag,which always indicates a change
in [Link] logical shifting this flag is always cleared.
Now to the instructions that allow you to move [Link] are
actually the most important instructions for any processor,for how
else could you process data?
Mnemonic Meaning
------------------------------------------------------------------
EXG Rn,Rn exchange of two register contents(don't
confuse with swap)
LEA <ea>,An load an effective address in address
register An
LINK An,#n build stack range
MOVE source,dest carry value over from source to dest
MOVE SR,<ea> transfer the status register contents
MOVE <ea>,SR transfer the status register contents
MOVE <ea>,CCR load flags
MOVE USP,<ea> transfer the user stack point
MOVE <ea>,USP transfer the user stack point
MOVEA <ea>,An transfer a value to the address
register An
MOVEM Regs,<ea> transfer several registers at once
MOVEM <ea>,Regs transfer several registers at once
MOVEP source,dest transfer data to peripherals
MOVEQ #n,Dn quickly transfer a 8 bit constant to
the data register Dn
PEA <ea> deposit an address on the stack
SWAP Dn swap the halves of the register(the
upper 16 bits with the lower)
UNLK An unlink the stack
LEA label,A0
MOVE.L #label,A0
which is equivalent to
PEA label
All these instructions deposit the address of 'label' on the stack
The following instruction also does this:
MOVE.L #label,-(SP)
The LEA instruction becomes much more interesting when the label
is replaced by indirect [Link]'s an example:
LEA 1(A0,D0),A1
MOVE.L A0,A1
ADD.L D0,A1
ADDQ.L #1,A1
Mnemonic 1 2 3 4 5 6 7 8 9 10 11 12 X N Z V C P
-----------------------------------------------------------------
ABCD x
ADD s s x x x x x x x s s s * * * * *
ADDA x x x x x x x x x x x x - - - - -
ADDI x x x x x x x x * * * * *
ADDQ x x x x x x x x x * * * * *
ADDX x x * * * * *
AND s x x x x x x x s s s - * * 0 0
ANDI x x x x x x x x - * * 0 0
ASL, ASR x x x x x x x x * * * * *
Bcc - - - - -
BCHG x x x x x x x x - - * - -
BCLR x x x x x x x x - - * - -
BRA - - - - -
BSET x x x x x x x x - - * - -
BSR - - - - -
BTST x x x x x x x x z x x - - * - -
CHK x x x x x x x x x x x - * u u u
CLR x x x x x x x x - 0 1 0 0
CMP x x x x x x x x x x x x - * * * *
CMPA x x x x x x x x x x x x - * * * *
CMPI x x x x x x x x - * * * *
CMPM x x x x x x x - * * *
cpGEN - - - - -
DBcc - - - - -
DIVS x x x x x x x x x x x - * * * 0
DIVU x x x x x x x x x x x - * * * 0
EOR x x x x x x x x - * * 0 0
EORI x x x x x x x x - * * 0 0
EORI CCR * * * * *
EORI SR * * * * *
EXG - - - - -
EXT - * * 0 0
EXTB - * * 0 0
ILLEGAL - - - - -
JMP x x x x x x x - - - - -
JSR x x x x x x x - - - - -
LEA x x x x x x x - - - - -
LINK x - - - - -
LSL, LSR x x x x x x x * * * 0 *
MOVE x s x x x x x x x s s s - * * 0 0
MOVEA x x x x x x x x x x x x - - - - -
MOVE to CCR x x x x x x x x x x x * * * * *
MOVE from SR x x x x x x x x - - - - - P
MOVE to SR x x x x x x x x x x x * * * * * P
MOVE USP x - - - - - P
MOVEM x s d x x x x s s - - - - -
MOVEP s d - - - - -
MOVEQ d - * * 0 0
MULS x x x x x x x x x x x - * * 0 0
MULU x x x x x x x x x x x - * * 0 0
NBCD x x x x x x x x * u * u *
NEG x x x x x x x x * * * * *
NEGX x x x x x x x x * * * * *
NOP - - - - -
NOT x x x x x x x x - * * 0 0
OR s x x x x x x x s s s - * * 0 0
ORI x x x x x x x x - * * 0 0
PEA x x x x x x x - - - - -
RESET - - - - - P
ROL, ROR x x x x x x x - * * 0 *
ROXL, ROXR x x x x x x x - * * 0 *
RTE - - - - - P
RTR * * * * *
RTS - - - - -
SBCD x x * u * u *
Scc x x x x x x x x - - - - -
STOP x - - - - -
SUB s s x x x x x x x s s s * * * * *
SUBA x x x x x x x x x x x x - - - - -
SUBI x x x x x x x x * * * * *
SUBQ x x x x x x x x x * * * * *
SUBX x x * * * * *
SWAP x - * * 0 0
TAS x x x x x x x x - * * 0 0
TRAP x - - - - -
TRAPV - - - - -
TST x x x x x x x x - * * 0 0
UNLK x - - - - -
Chapter 3.
---------
[Link] With Assemblers.
-------------------------
The instructions that you've learned so far are incomprehensible
to the MC68000 [Link] letters MOVE mean absolutely nothing
to the processor-it needs the instructions in binary [Link]
instruction must be coded in a word-which normally takes a lot of
work.
An assembler does this work for [Link] assembler is a program that
translates the instructions from text into the coresponding binary
[Link] text that is translated is called Mnemonic or
[Link] a lot easier working with text instructions-or does
$4280 mean more to you than CLR.L D0?
This chapter is about working with [Link]'ll describe the
following three:
ASSEM;
This is the assembler from the Amiga's development [Link]
assembler is quite powerful,but it is clearly inferior to its two
fellow compilers in some areas.
AssemPro;
This is the Abacus [Link] has a debugger in addition to the
[Link] lets you test and correct [Link] our opinion,
it is the best one to use for writing and testing practice
[Link] this reason,we wrote the programs in this book with
this assembler.
KUMA-SEKA;
This is a popular assembler which also has a debugger.
-O Object file
-V Error messages that occur during assembling are written
to a [Link] this isn't given,the error messages appear
in the CLI window.
-L The output of the assembled program lines are sent to
this [Link] can also use"PRT:"to have it printed.
-H This file is read in at the beginning of the assembled
file and assembled along with it.
-E A file is created that contains lines which have EQU
instructions.
-C This option isn't followed by a filename but by another
[Link] can also use OPT to do [Link] following
options are available:
[Link].
------------
Abacus's AssemPro is a package which combines editor,assembler and
debugger in an easy to use package.
The AssemPro Program is divided into several windows-one for the
assembler,the editor,the debugger and several help functions.
Producing a program is very easy:
1) Write the program with the editor and then store it to disk.
2) Start the assembler,so that the program is translated.
3) If desired,start the debugger,load the program and test it.
Within the debugger you can work through parts of the program or
even through single [Link] after each one of these steps the
debugger shows you the state of the registers and flags in the
status register,you can easily try the programs presented in this
book.
You need to load AssemPro only once when working with machine
language [Link] you don't need to save back and to between
editor,assembler,linker and debugger.
AssemPro has an especially interesting function:the reassembler.
With this debugger function you are able to convert runnable
programs into the source text of the [Link] you have made
the source text,you can edit the program using the editor and
assemble it [Link] is equipped with functions other
assemblers [Link] are however,some differences you should know
[Link] many programs you see were written for the K-SEKA,be
aware of one difference:the EVEN [Link] uses the ALIGN
instruction.
Note,that when entering and assembling one of the programs in
AssemPro you must make sure that you place an END directive at the
end of the source text.
The following is an introduction into working with AssemPro and
the programs in this book.
Instruction Function
----------------------------------------------------------------
t(Target) Puts the cursor on the highest line in the
text.
t<n> Puts the cursor on line n.
b(Bottom) Puts the cursor on the last line in the text.
u(Up) Go up one line.
u<n> Go up n lines.
d(Down) Go down one line.
d<n> Go down n lines.
z(Zap) Deletes the current line.
z<n> Deletes n lines starting at the cursor line.
e(Edit) Lets you edit the current line(and only that
line).
e<n> Edit from line n.
ftext(Find) Searches for the text entered starting at the
current [Link] case of a letter makes a
difference,so make sure to enter it correctly.
Blanks that appear after the f are looked for
as well!
f Continues searching beyond the text that was
previously given.
i(Insert) Starts the line [Link] you can enter a
program line by [Link],you can't use the
cursor to move into another [Link] numbers
are generated [Link] lines that
follow are moved down,not erased.
ks(Kill Source) The source text is deleted if you answer"y"
when the program asks if you are [Link]
nothing happens.
o(Old) Cancels the "ks"function and saves the old text
p(Print) Prints the current line.
p<n> Prints n lines starting at cursor line.
Instruction Function
-----------------------------------------------------------------
v(View files) Look at the disk's [Link] can also
include the disk drive or subdirectory
that interests [Link] example,"vc"causes
the "c"subdirectory to be listed and makes
it the current directory.
kf(Kill file) The program asks for the name of the file.
The file is deleted(and you aren't asked
if your sure either-so be careful).
r(Read) After inputting this instruction,you'll be
asked which file to load(FILENAME>).The
file that you specify is then [Link]
only "r"is entered,a text file is loaded
in the editor.
ri(Read Image) Loads a file into [Link] you've
entered the filename,SEKA asks for the
address the file should begin at in memory
(BEGIN>)and the highest address that
should be used for the file(END>).
rx(Read from Auxillary) This works just like the "ri"function
except that it reads from the serial port
instead of from disk(You don't need a file
name).
rl(Read Link file) This instruction reads in a SEKA created
link [Link] you'll be asked if you are
sure,because the text buffer is erased
when the link file is loaded.
w(Write) After entering this instruction,you'll be
asked for the name of the file the text
should be written to.A".s"is automatically
appended to the name,so that it can be
recognized as a SEKA file.
wi(Write Image) Stores a block of memory to disk after the
name,beginning and end are entered.
wx(Write to Auxillary) This is similar to"wi";the only difference
is that the output is to the serial inter-
face.
wl(Write Link file) Asks for the name and then stores a link
file that was assembled with the"I"option
to [Link] this isn't available,the
message "* * Link option not specified"
appears.
g run
You saw some of the calculations like SEKA can make in the "?"
[Link] can also use them in [Link] folowing
operations work in SEKA:
+ Addition
- Subtraction
* Multiplication
/ Division
& Logic AND
! Logic OR
~ EXclusive OR (XOR)
Chapter 4.
---------
[Link] First Programs.
--------------------
You`re getting pretty far along in your knowledge of machine
language [Link] fact,you`re to the point where you can
write programs,and not just programs for demonstration purposes,
but ones that serve a real [Link]`re assuming that you have
the AssemPro assembler and have loaded it.
If you`re using a different assembler,a few things must be done
[Link] covered those differences already in the chapter on
the different assemblers.
We`ve written the example programs as subroutines so they can be
tried out directly and used [Link] assembling the program,you
can put the desired values in the [Link] you can either
single-step thru the programs or run the larger programs and
observe the results in the registers directly.(using the SEKA
assembler you can type "j program_name"to start the [Link]
you can read the results from the register directly,or use "q
address"to read it from memory.)
Lets start with an easy example,adding numbers in a table.
[Link] Tables.
-----------------
Imagine that you have numbers in memory that you'd like to add.
Lets assume that you have five numbers whose length is one word
[Link] want their sum to be written in register [Link] easiest
way to do this is:
;(4.1A)
adding1:
clr.l D0 ;Erase D0 (=0)
move table,d0 ;First entry in D0
add table+2,d0 ;Add second entry
add table+4,d0 ;Add third entry
add table+6,d0 ;Add fourth entry
add table+8,d0 ;add fifth entry
rts ;Return to main program
table: dc.w 2,4,6,8,10,
end
Try out the program using the debugger by single stepping thru the
program until you get to the RTS instruction(left Amiga T).(SEKA
owners use "j adding1").You see that data register D0 really
contains the sum of the values.
The method above only reads and adds numbers from a particular set
of [Link] Amigas processor has lots of different sorts of
addressing modes that give us a shorter and more elegant solution.
Lets add a variable to the address of the table,so that the
program can add different tables.
Lets put the addresses of the table in an address register(for
example, A0)[Link] register can be used as a pointer to the
[Link] must use move.l since only long words are [Link]
using a pointer to a table you can use indirect [Link] can
change the expression "table+x" to"x(A0)".
;(4.1B)
adding1:
clr.l D0 ;Erase D0 (=0)
move.l #table,a0 ;Put table addresses in A0
move 0(a0),d0 ;Put first entry in d0
add 2(a0),d0 ;Add second entry
add 4(a0),d0 ;Add third entry
add 6(a0),d0 ;Add forth entry
add 8(a0),d0 ;Add fifth entry
rts ;Return to main program]
table: dc.w 2,4,6,8,10
end
;(4.1C)
adding2:
clr.l d0 ;Erase D0
move.l #table,a0 ;Put table addresses in A0
move #$5,d1 ;Put number of entries in D1
[Link] a Table.
-------------------
Lets keep working with [Link] don't want to just read data
from one this [Link] want to change [Link]'ll assort the table
in assending order.
You need to decide how to do the [Link] simplest method is to
do the following.
Compare the first and the second [Link] the second value is
larger than the first one,things are OK so [Link] the next step,
compare the second and third values,and so [Link] you come to the
final pair and in each case the preceding value was smaller than
the following value,then the sorting is done(it was unnescessary).
If you find a pair where the second value is smaller than the
first,the two values are [Link] then get a flag(here let's
use a register)that is checked once you're done going thru the
[Link] it is set,the table probably isn't completely [Link]
then erase the flag and start again from the [Link] the flag
is still zero at the end,the sorting is complete.
Now let's write a program to do [Link] let's figure out the
variables you [Link]'ll use registers for the [Link] need
a pointer to the table you're sorting(A0),a counter(D0)and a flag
(D1).While the program is running,change these values,so you'll
need two more registers to store the starting values(address and
the number of the table entries).You'll use A1 and D2.
Let's start writing the program,each section will be written and
then [Link] the complete program will be [Link] put the
tables address in A1 and the number of entries in D2.
end
Now the preparations are [Link] pointer and the counter are
ready and the flag is [Link] counter is decremented by two
because you want to use the DBRA command(take one off)and only X-1
comparrisons are needed for X numbers(take off one more).
Next let's write the loop that compares the [Link] compare one
word with [Link] looks like this:
loop:
move 2(a0),d3 ;Next value in register D3
cmp (a0),d3 ;Compare values
doswap:
move (a0),d1 ;Save first valus
move 2(a0),(a0) ;Copy second into first word
move d1,2(a0) ;Move first into second
moveq #1,d1 ;Set flag
noswap:
Now increment the counter and continue with the next [Link] do
this until the counter is negative.
;(4.2B)
sort: ;Start address of the program
move.l #table,a1 ;Load pointer with address
move.l a1,a0 ;Copy pointer to working register
move.l #5,d2 ;Number in the counter
move.l d2,d0 ;Copy number of elements
subq #2,d0 ;Correct counter value
clr d1 ;Erase flag
loop:
move 2(a0),d3 ;Next value in register D3
cmp (a0),d3 ;Compare values
bcc noswap ;Branch if greater than or equal to
doswap:
move (a0),d1 ;Save first value
move 2(a0),(a0) ;Copy second into first word
move d1,2(a0) ;Move first into second
moveq #1,d1 ;Set flag
noswap:
addq.l #2,a0 ;Pointer+2
dbra do,loop ;Continue looping until the end
tst d1 ;Test flag
bne sort ;Not finished sorting yet!
rts ;Otherwise [Link]
table:
dc.w 10,8,6,4,2 ;When finished acceding
end
start:
movem.l d0-d7/a0-a6,-(sp) ;save registers
sort:
etc...
...
...
bne sort ;not finished sorting yet!
movem.l d1-d3/d7/a2-a3,-(sp)
0 1 2 3 4 5 6 7 8 9 A B C D E F
$30 $31 $32 $33 $34 $35 $36 $37 $38 $39 $41 $42 $43 $44 $45 $46
To convert the digits 0-9,you just need to add $[Link] the letters
A-F that correspond to the values 10-15,you need to add $[Link]
program to evaluate a half byte must make a destinction between
values between 0 and 9 and those between A and F and add either
$30 or $37.
Now let's write a machine language subroutine that you'll call for
each digit in the long words hex representation.
nibble:
and #$0f,d2 ;just keep low byte
add #$30,d2 ;add $30
cmp #$3a,d2 ;was it a digit?
bcs ok ;yes:done
add #7,d2 ;else add 7
ok:
rts ;done
;(4.3.1a) bin-hex
; ;your program
lea buffer,a0 ;pointer to buffer
move #$4a,d1 ;byte to be converted(example)
bsr byte ;and convert
rts
; ... ;more of your program
byte:
move d1,d2 ;move value into d2
lsr #4,d2 ;move upper nibble into lower nibble
bsr nibble ;convert d2
move.b d2,(a0)+ ;put character into buffer
move d1,d2 ;value in d2
bsr nibble ;convert lower nibble
move.b d2,(a0)+ ;and put it in buffer
rts ;done
nibble:
and #$0f,d2 ;just keep low byte
add #$30,d2 ;add $30
cmp #$3a,d2 ;was it a digit?
bcs ok ;yes:done
add #7,d2 ;else add 7
ok:
rts ;done
buffer:
blk.b 9,0 ;space for long word data
end
;(4.3.1B) bin-hex-2
hexlong:
lea buffer,a0 ;pointer to the buffer
move.l #$12345678,d1 ;data to convert
move #7,d3 ;counter for the nibbles:8-1
loop:
rol #4,d1 ;move upper nibble into lower
move d1,d2 ;write in d2
bsr nibble ;and convert it
move.b d2,(a0)+ ;character in buffer
dbra d3,loop ;repeat 8 times
rts ;finished!
nibble:
and #$0f,d2 ;just keep low byte
add #$30,d2 ;add $30
cmp #$3a,d2 ;was it a digit?
bcs ok ;yes:done
add #7,d2 ;else add 7
ok:
rts ;done
buffer:
blk.b 9,0 ;space for long word,null byte
end
main:
lea buffer,a0 ;pointer to the buffer
move #1234,d1 ;number to convert
jsr deci_4 ;test subroutine
illegal ;room for breakpoint
digit:
add #$30,d1 ;convert result into ASCII
move.b d1,(a0)+ ;move it into buffer
clr d1 ;erase lower word
swap d1 ;move the remainder down
rts ;return
end
end
hexinloop:
tst.b (a0) ;test digit
beq hexinok ;zero,then done
bsr nibblein ;convert digit
lsl.l #4,d1 ;shift result
or.b d0,d1 ;insert nibble
bra hexinloop ;and continue
hexinok:
rts
nibblein:
clr.l d0 ;convert the nibble from (A0)
move.b (a0)+,d0 ;get digit,increment A0
sub #'A',d0 ;subtract $41
bcc ischar ;no problem:in range A-F
add #7,d0 ;else correct value
ischar:
add #10,d0 ;correct value
rts
hexinloop:
bsr nibblein ;convert digit
cmp $10,d0 ;test if good
bcc hexinok ;no,then done
lsl.l #4,d1 ;shift result
or.b d0,d1 ;insert nibble
bra hexinloop ;and continue
hexinok:
rts
decinloop:
bsr digitin ;convert digit
cmp #10,d0 ;test,if valid
bcc decinok ;no,then done
mulu #10,d1 ;shift result
add d0,d1 ;insert nibble
bra decinloop ;and continue
decinok:
rts ;end of conversion
clr.l d0 ;erase D0
move.b (a0)+,d0 ;get digit,increment A0
sub #'0',d0 ;subtract $30
rts
end
CHAPTER 5.
---------
[Link] Registers.
--------------------
You can get information about hardware functions without using
library [Link] can use the hardware registers [Link]
are memory locations at particular addresses that are neither in
RAM nor in [Link] are direct interfaces between the processor
and its peripheral devices.
Each device has a number of hardware registers that the processor
accesses to control graphics,sound and input/[Link] are lots
of possibilities for assembly language [Link]'ll only be
able to go into a few examples.
The registers are generally used in byte-wise [Link]'ll find
an example in the next chapter.
You can use this register to have a machine language program check
if one of these keys was pressed and then respond by calling or
ending a function.A program section might look like this:
skeys=$bfec01
...
cmp.b #$37,skeys ;Alternate pressed?
beq function1 ;Yes!
cmp.b #$31,skeys ;or right Amiga?
beq function2 ;Yes!
... ;and so on...
[Link].
----------
If you want to find out how much time elapsed between two events,
you can use a hardware register to keep track of time quickly and
[Link] Amiga contains just such a timekeeper:the I/O port
[Link] chip has a 24 bit wide counter that has a 60 Hertz
clock.
These 24 bits can't be read at once,for instance with a MOVE.L
command,because the register is divided into three [Link] low
byte is at address $BFE801,the middle at $BFE901,and the high byte
with bits 16-23 at $BFEA01.
Here's an example of a way to use this register:finding out how
long a subroutine takes to run.
test:
bsr gettime ;put current time in D7
move.l d7,d6 ;save it in D6
bsr routine ;routine to be timed
bsr gettime ;get the time again
sub.l d6,d7 ;elapsed time in
... ;1/50 seconds in D7!
nop ;set break point here to stop
loop:
dbra d0,loop ;count down
rts
gettime:
move.b $bfea01,d7 ;hi-byte in D0
lsl.l #4,d7 ;shift twice by 4 bits
lsl.l #4,d7 ;(8 bits shifted)
move.b $bfe901,d7 ;get mid-byte
lsl.l #4,d7
lsl.l #4,d7 ;shift again
move.b $bfe801,d7 ;get the lo-byte
rts ;done
;(5.3A) mouse
test:
jsr run ;test subroutine
jmp test ;continue until broken
nop ;breakpoint here
joy= $dff00a
run:
move joy,d6 ;data item 1 in D6
move joy+2,d7 ;data item 2 in D7
jmp run ;rts for SEKA and other
end
test:
jsr run ;test subroutine
jmp test ;continue until broken
nop ;breakpoint here
joy= $dff00a
run:
move d7,d6 ;old position in D6
move joy,d7 ;new position in D7
sub d7,d6 ;difference in D6
jmp run ;rts for SEKA and other
end
UP $FF00 HI-BYTE -1
DOWN $FFFF LO-BYTE -1
LEFT $0100 HI-BYTE +1
RIGHT $0001 LO-BYTE +1
The TST.B instruction tests the addressed byte and sets the Z and
the N [Link] the N flag is set,you know that bit 7 of the tested
byte is [Link] the fire button turns on LO potential,the bit is
erased when the button is [Link] N flag works that way with
the TST command as [Link] BPL command in the program above
branches if the button was [Link] PL stands for plus and is
set when the sign bit is cleared.
Here is the complete program to check the fire button and joystick
difference:
joy = $dff00a
run:
move d7,d6 ;old position in D6
move joy,d7 ;new position in D7
sub d7,d6 ;difference in D6
jmp run ;rts for SEKA and other
fire:
nop ;breakpoint here
end
[Link] Production.
-------------------
It's fun to make noises and [Link] Amiga lets you use Audio
Devices and various I\O structures to play tones,noises and/or
music pieces in the [Link]'ll leave this method to C or
Basic programmers,since you can use short machine language
programs to directly program the audio hardware.
The Paula chip has all the capabilities needed for tone production
This chip can be accessed using the hardware registers of the
[Link] library of any high level language can do more than
you can-program the chip.
How does it work?Since the disk uses Direct Memory Access(DMA)to
get information,you just need to tell it where to look for the
tone or tone sequences that you would like [Link] also need to
tell it how to interpret the data.
Lets start with the easiest case-producing a constant tone.A tone
like this consists of a single oscillation that is repeated over
and [Link] you make a diagram of the oscillation,you see the wave
form of the [Link] are several standard waves: sine,
square,triangle and saw [Link] simplest is the square wave.
To produce a square wave,you just need to turn the loud speaker on
and [Link] frequency that occurs here is the frequency of the
tone.
You want to produce such a tone using the [Link] you need to
make a table that contains the amplitude of the tone you wish to
[Link] a square wave,you only need two entries in the table,a
large and a small [Link] the sound chip in the Amiga has
amplitude values between -128 and +127,our table looks like this:
soundtab:
dc.b -100,100
You need to give the address of the table to the sound [Link]
have four choices,since the Amiga as four sound [Link]
address of the hardware register in which the table address for
channel 0 must be written is $DFF0A0;for channel 1 it is $DFF0B0;
for channel 2 its $DFF0C0;for channel 3 its $[Link] stereo
output,channels 0 and 3 control the left loud [Link] 1
and 2 control the right loud [Link] example,choose channel 0
and write the following:
move.l #soundtab,$DFF0A0 ;address of the table
Next you need to tell the sound chip how many items there are in
the [Link] data is read from beginning to end and sent to the
loud [Link] it reaches the end,it starts over at the
[Link] the sound chip gets this one word at a time,even
though the data is in bytes,the table must always have an even
number of [Link] length that you give it is the number of words
the number of bytes/2.
You put the length for channel 0 in the register at address
$DFF0A4(for channel x just add x*$10!):
Now you have to tell it how quickly to read the data and output it
to the loud [Link] word determines the [Link],it
does this "backwards".The larger the value,the lower the frequency
Choose the value 600 for this example:
Now you need to decide the loudness level for the tone or noise.
You have 65 different levels to choose [Link] choose the middle
value 40 for our example:
Thats the data that the sound chip needs to produce the tone.
However nothing happens [Link] next?The chip can't tell if the
data thats in the registers is valid,so it doesn't know if it
should use the data.
You need to work with the DMA control register at address $DFF096
to let it [Link] only need six bits of this word for your
purposes:
Bit 9 ($200) This bit makes it posible for the chip to access
DMA [Link] you want to start playing the tone,
you need to set this bit.
end
Now lets use the routine in a program to produce a short peep tone
that you culd,for instance,use as a key click:
loop:
dbra d0,loop ;count down
still:
move #1,ctlw ;turn off tone
rts
table:
dc.b 40,70,90,100,90,70,40,0,-4,0
end
You can play upto four tones at the same time in such a way that
they are independant of each [Link] Amiga also offers another
method of making the sound more interesting:you can modulate the
tone.
Lets produce a siren [Link] could do this by figuring out the
entire sequence and programming [Link],as you can well imagine
thats a lot of work.
Its much easier to use two tone [Link] use channel 1 for
the bass tone and channel 0 for its [Link] 0 needs to
hold the envelope of the siren [Link] needs to give the expanding
and contracting of the tone at the right speed.
You then have two ways that you can have channel zero work with
channel [Link] can control the volume via channel 0,the read in
rate(frequency),or [Link] our example,you'll use frequency
modulation.
run:
move.l #table,c0thi+16 ;table start for channel 1
move #8,c0tl+16 ;table length--8 words
move #300,c0per+16 ;read in rate
move #40,c0vol+16 ;volume
end
When you start the program,you'll here a [Link] can change this
tone to your hearts content.
Did you notice the added "adcon"[Link] register controls
the modulation of the audio channel as well as handling disk
[Link] same technique is used here as for the DMA control
register,bits can only be set if bit 15 [Link] a result,you don't
have to worry about the disk bits.I'd recommend against
experimentation.
Control bit 15 isn't the only one of interest to [Link] can also
use bits 0-7,because they determine which audio channel modulates
another [Link] is a restriction,though.A channel can only
modulate the next higher numbered [Link] this reason you use
channel 1 for the basic tone and channel 0 for the modulation in
the [Link] can't for example,modulate channel three with
channel [Link] 3 can't be used to modulate any other
channel.
Bit Function
-----------------------------------------------------------------
0 Channel 0 modulates the volume of channel 1
1 Channel 1 modulates the volume of channel 2
2 Channel 2 modulates the volume of channel 3
3 Turn of channel 3
4 Channel 0 modulates the frequency of channel 1
5 Channel 1 modulates the frequency of channel 2
6 Channel 2 modulates the frequency of channel 3
7 Turn off channel 3
Now come the registers that are used for tone [Link] first
two registers should be treated especially carefully-if they are
used wrong,very nasty effects can occur.
These registers can be either read or written [Link]
information is included under R/W in the table.
Now for the registers that contain information about the joystick,
mouse or [Link] addresses have been gone over in part
previously.
Chapter 6
---------
[Link] Operating System.
-----------------------
Now lets take a step forward in your ability to write assembly
language [Link] not enough to put a piece of text in memory
[Link] want to be able to put it on the [Link] you know
how to write a character on the screen?Do you know how to draw a
window on the screen that can be modified by the mouse?Actually
you don't have to have terribly precise knowledge about such
topics.
Fortunately,the Amigas operating system supplies routines that
take care of common tasks like [Link] can seem quite complicated
due to the number of routines [Link] routines are in
[Link]'ll look at the libraries in some depth now.
[Link] Libraries.
-------------------
Before you can use a library,it must be [Link] has to be
loaded into [Link],the whole library must be loaded,
even if you only need one of the functions.
First you need to decide what the program must be able to do,so
you can see which libraries you'll [Link] simple I/O text,you
don't need a library that contains routines for moving graphics!
There are a number of libraries onj a normal Workbench [Link]
an overview of the names and the sort of functions they do:
[Link];
This library is needed to load the other [Link] is already
in memory and doesn't need to be [Link] in charge of basic
functions like reserving memory and working with I/O channels.
[Link];
Contains all the functions for normal I/O operations,for instance
screen or disk access.
[Link];
Used for working with screens,windows,menus,etc...
[Link];
This contains routines for working with the Copper lists that are
used for controlling the screen.
[Link];
Contains graphics routines for text output in console windows.
[Link];
Used for working with the character fonts that are stored on the
disk.
[Link];
This library contains functions to control the Blitter(or graphics
)[Link] used for basic graphics functions.
[Link];
Used in the development and use of workbench symbols(icons).
[Link];
Used for working with screen memory (layers).
[Link];
Contains basic math floating point operations.
[Link];
Contains basic math functions for integers.
[Link];
Contains higher level mathmatical functions.
[Link];
Used for evaluating analog input to the Amiga.
[Link];
Contains routines for time critical [Link] can be used to
program exact time intervals.
[Link];
Contains the single function "Translate",that translates normal
text written phonetically for the narrator,the speech synthesisor.
[Link] Functions.
----------------------
Since this chapter is rather complex we'll first describe the
fundamental routines necessary to use the Amiga's operating system
after a description a complete program is [Link] library
begins in memory with a number of JMP [Link] JMPs branch
to the routines that are in the [Link] call a function,you
need to find the beginning of this JMP table and call function x
by going to the xth JMP [Link] you use an offset to get
to the right JMP [Link],you don't start at the beginning
but at the end of the JMP table,so use negative offsets.
It works out very [Link] lets open the "[Link]"by using
"[Link]'s"base [Link] address is $[Link] call a
fuction from another library,you need to use another base address.
Now you need the offset for the function that you [Link] want
the OpenLib function that has -408 as an [Link]'ll find a list
of function offsets in the appendix.
You need a pointer to the name of the library you are loading for
the OpenLib function(in this case "[Link]")and a long word in
memory that you can use to store the base address of the DOS
[Link] get this back from the OpenLib [Link] need to be
sure to write the library name in lower case letters([Link]),
otherwise you can't open it.I entered a name in capitol letters
once and spent a lot of time finding this error.
init:
move.l Execbase,a6 ;base address in A6
lea dosname,a1 ;address of library name
moveq #0,d0 ;version number
jsr OpenLib(a6) ;open DOS library
move.l d0,dosbase ;save DOS base address
beq error ;if zero,then error!
... ;your program goes here
... ;more program...
error: ;error
move.l dosbase,a6 ;address of library name
jsr IoErr(a6) ;call IoErr for error info
move.l d0,d5
... ;your error routine goes here
rts
dosname: ;name of library to open
dc.b '[Link]',0,0
align ;SEKA uses-even
end
This is the way to load the DOS library so that you can use [Link]
library functions are called this [Link] are put in
registers and passed to the [Link] there is an error,when
the function doesn't run correctly,a zero is usually put in data
register D0.
Once your program is done with its work,you need to close the
libraries that are still open before you return to the CLI or
[Link] CloseLib function (offset -414)takes care of this
[Link] function is in the EXEC library just like the [Link]
only parameter it needs is the base address of the library that is
[Link] close "[Link]",do the following:
[Link] Initialization.
---------------------------
Before you can start a program,you need to initialize many things
so that the program can run.
Lets take an example program that does some text editing.A program
like this must be able to store text,so it needs to be able to
access [Link] also needs to be able to accept keyboard input
and do screen output,so it needs an output window.
To do this,you need to open one or more of the libraries that we
talked about [Link] assume that you've loaded the DOS
library,so that you can do the next steps.
[Link] Memory.
---------------------
There are several ways to get the operating system to assign you a
chunk of [Link] need to use one of them,so that during multi-
tasking,you don't have one program overwriting another programs
memory area.
Lets look at the function that is normally [Link] function is
in the resident EXEC library and has the name AllocMem (offset
-$c6).It reserves a memory area,using the value in D0 as the
[Link] address that the memory area begins at is returned in
the D0 data [Link] it returns zero,the program could'nt give
you that much memory.
You can also use a mode word in D1 to determine whether the memory
area that is reserved should be erased or not.
The routine looks like this:
ExecBase = 4 ; (6.3.1A)
AllocMem = -$c6
...
move.l #number,d0 ;number of bytes to reserve
move #mode,a6 ;mode word
move.l ExecBase,a6 ;DOS base address in A6
jsr AllocMem(a6) ;call function
move.l d0,address ;save memory's start address
beq error ;memory not reserved
...
ExecBase = 4 ; (6.3.1B)
AllocAbs = -$cc
...
move.l #number,d0 ;number of bytes to reserve
lea address,a1 ;desired start address
move.l execbase,a6 ;EXEC base address
jsr AllocAbs(a6) ;reserve memory
tst.l d0 ;everything ok?
beq error ;no!
...
When the program has done its work and must return to the CLI or
the Workbench,it needs to return the memory it as reserved to the
[Link] FreeMem function (offset -$D2) handles this.
The function works like AllocAbs in that the number of bytes is
put in D0 and the start address of the memory area is put in A1.
If you try to free up a memory area that was'nt reserved,you'll
usually crash the computor.
The routine to free up a memory area looks like this:
ExexBase = 4 ; (6.3.1C)
FreeMem = -$d2
...
move.l #number,d0 ;number of bytes released
lea address,a1 ;start address from AllocAbs
move.l ExecBase,a6 ;ExecBase address
jsr FreeMem(a6) ;free up memory
tst.l d0 ;everything ok?
beq error ;no!
...
init:
move.l ExecBase,a6 ;base address in A6
lea dosname(pc),a1 ;address of library name
move.q #0,d0 ;version number:unimportant
jsr OpenLib(a6) ;call the function
move.l d0,dosbase ;save DOS base address
beq error ;if zero,then error!
... ;more of your program
... ;now open window,etc...
error:
... ;error occured
... ;your error routine
mode_old = 1005
rts
...
conhandle: dc.l 1 ;space for handle
Now for a few remarks about opening and closing the window in this
[Link] you open several windows in the same way,you'll get several
windows and thus several handle [Link] this way,you can put as
many windows on the screen as you [Link] can do your work with
them and close them individually.
Here is the complete program to open and close a simple window in
AssemPro format (We have used the AssemPro ILABEL and the macros
INIT_AMIGA and EXIT_AMIGA so AssemPro owners can start the program
from [Link] you are using a different assembler check your
documentation for instructions on starting and exiting programs):
OpenLib =-30-378
closelib =-414
;execbase =4 ;defined in AssemPro macros
open =-30
close =-30-6
IoErr =-132
mode_old = 1005
alloc_abs =-$cc
run:
bsr init ;initialization
bra test ;system-test
rts
test:
error:
move.l dosbase,a6
jsr IoErr(a6)
move.l d0,d5
dosbase: dc.l 0
conhandle: dc.l 0
end
[Link]/Output.
-----------------
Besides managing and making calculations with data,the most
important work of a program is to input and output the [Link]
are many methods of data transfer in and out of the computor,for
instance screen or printer output,keyboard input,using the serial
or the parallel interface,tone or speech output and finally disk
operations.
You want to learn about all these methods of data input and output
for programming and [Link]'ve written some programs as
subroutines that should be useful for later [Link] makes good
sense to make a library of these subroutines that can either be
directly integrated in a new program or linked to a [Link] the
end of the sections there is a list of a complete program so you
can see how the subroutines are used.
To prepare for input/output,you need to have data to output and
space to input [Link] get this ready,you need a correct program
beginning in which the EXEC and DOS libraries are opened and
memory is [Link] this,you begin most programs by outputing
some [Link] text can be a program title or the instruction to
input data over the [Link] start looking at screen output.
[Link] Output.
--------------------
For a computor like the Amiga the first question is where should
the screen output be sent?The answer is simple for many computors;
they only have one screen,and output goes [Link] need to
specify which window to write to when you use the Amiga,however.
[Link] to CLI
The first posibillity only exists if the program that makes the
output was started from [Link] not,you need to open your own
custom window for your [Link] so,you can use the window that
was opened by the CLI for output.
If you use the second method,you need to open a [Link] you've
already seen,there are three [Link] simple text and character
output,the difference between the three sorts of windows isn't
very [Link] you have a free hand in determining which sort of
window to [Link] open a CON:window and put its handle number in
"conhandle".
You've opened your window and want to output a [Link] choose
text to output and then put it in memory using a code segment like
this:
move.l #titleend-title,d3
The advantage of specifying the length is that you can put control
characters between the beginning and end of the [Link] this way,
you can execute certain functions using text [Link]'ll learn
about the control characters in a bit.
titleend:
align ;event
end
Pmsg;
Outputs the text from (D2) to the first null byte.
Pline;
Is the same as the routine above except that the text is
automatically followed by a CR,the cursor is positioned at the
beginning of the next line.
Pchar;
Outputs the character in D0
Pcrlf;
Puts the cursor at the beginning of the next line.
pcrlf:
move #10,d0 ;line feed
bsr pchar ;output
move #13,d0 ;and CR
pchar:
move.b d0,outline ;character in output buffer
move.l #outline,d2 ;address of the character
pmsg: ;*output line (D2) upto null
move.l d2,a0 ;address in A0
clr d3 ;length = 0
ploop:
tst.b (a0)+ ;null byte ?
beq pmsg2 ;yes:length found
addq.l #1,d3 ;else length + 1
bra ploop ;and continue looking
pmsg2:
move.l dosbase,a6 ;DOS base address in A6
move.l conhandle,d1 ;our window handle
jsr Write(a6) ;call write function
rts ;done!
Openlib =-30-378
closelib =-414
;execbase = 4 ;Defined in AssemPro
;Macros
open =-30
close =-30-6
write =-48
IoErr =-132
mode_old = 1005
alloc_abs =-$cc
run:
bsr init ;initialization
bsr test ;system test
nop
bra qu ;quit and exit
test:
move.l #title,d0
bsr pmsg
bsr pcrlf
bsr pcrlf
rts
rts
ploop:
tst.b (a0)+
beq pmsg2
addq.l #1,d3
bra ploop ;length calculate
pmsg2:
move.l conhandle,d1
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6
rts
pcrlf:
move #10,d0
bsr pchar
move #13,d0
pch1:
lea outline,a1
move.b d0,(a1)
move.l a1,d2
move.l #1,d3 ;1 letter
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6 ;restore all
error:
move.l dosbase,a6
jsr IoErr(a6)
move.l d0,d5
qu:
move.l conhandle,d1 ;window close
move.l dosbase,a6
jsr close(a6)
dosbase: dc.l 0
conhandle: dc.l 0
titleend:
align
end
Using this program,you can very easily put whatever you want in
the CON:[Link] functions also work in RAW:[Link] should
rename "conhandle"as "rawhandle",so that you don't get things
mixed up later.
Lets stay with the CON:[Link] mentioned earlier,you can output
special characters that execute functions or change parameters for
[Link] characters are called control characters.
You've already learned about one of these control characters,Line
Feed ($A).This character isn't just output;instead,it calls a
function that moves the cursor into the next line and moves the
screen [Link] is very useful,but there are much more interesting
control characters.
Here's a list of control characters that execute [Link]
characters are given in hex.
Control Sequence;
Sequence Function
------------------------------------------------------------------
08 Backspace
0A Line Feed,Cursor down
0B Move Cursor up a line
0C Clear screen
0D Carrige return,cursor in the first column
0E Turn on normal characters (Cancel Of Effects)
0F Turn on special characters
1B Escape
Sequence Function
------------------------------------------------------------------
9B[n]40 Insert n blanks
9B[n]41 Move cursor n (1) lines up
9B[n]42 Move cursor n (1) lines down
9B[n]43 Move cursor n (1) characters to the right
9B[n]44 Move cursor n (1) characters to the left
9B[n]45 Move cursor down n (1) lines into column 1
9B[n]46 Move cursor up n (1) lines and into column 1
9B[n][3B n]48 Cursor in line;Set column
9B 4A Erase screen from cursor
9B 4B Erase line from the cursor
9B 4C Insert line
9B 4D Delete line
9B[n]50 Delete n characters starting at cursor
9B[n]53 Move up n lines
9B[n]54 Move down n lines
9B 32 30 68 Line feed => Line feed + return
9B 32 30 6C Line feed => just Line feed
9B 6E Sends the cursor position!A string of the following
form is returned:
9B (line) 3B (column) 52
9B(style);(foreground colour);(Background Colour)6D
The three parameters are decimal numbers in ASCII
[Link] mean:
Style: 0 = normal
1 = bold
3 = italic
4 = underline
7 = inverse
Foreground colour: 30-37
Colour 0-7 for Text
Background colour: 40-47
Colour 0-7 for background
9B(length)74 sets the maximum number of lines to be displayed
9B(width)75 sets the maximum line length
9B(distance)78 defines the distance in pixels from the left border
of the window to the place where output should
begin
9B(distance)79 defines the distance in pixels from the upper
border of the window to the place where output
should begin
The last four functions yield the normal values if
you leave off the parameters.
The parameters for the control sequence are put in quotation marks
so they are treated as an ASCII [Link] you see,just how easy
it is to do text output!
Here is the complete program to open and output the text and
control codes to your window in AssemPro format (We have used the
AssemPro macros INIT_AMIGA and EXIT_AMIGA so AssemPro owners can
start the programs from [Link] you are using a different
assembler check your documentation for instructions on starting
and exiting programs):
openlib =-30-378
closelib =-414
;execbase = 4 ;defined in AssemPro macros
open =-30
close =-30-6
write =-48
IoErr =-132
mode_old = 1005
alloc_abs =-$cc
run:
bsr init ;initialization
bsr test ;system test
nop
bra qu ;quit and exit
test:
move.l #mytext,d0
bsr pmsg
bsr pcrlf
bsr pcrlf
rts
rts
ploop:
tst.b (a0)+
beq pmsg2
addq.l #1,d3
bra ploop
pmsg2:
move.l conhandle,d1
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6
rts
pcrlf:
move #10,d0
bsr pchar
move #13,d0
pch1:
lea outline,a1
move.b d0,(a1)
move.l a1,d2
move.l #1,d3 ;one letter
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6 ;restore all
rts
error:
move.l dosbase,a6
jsr IoErr(a6)
move.l d0,d5
qu:
move.l conhandle,d1 ;window close
move.l dosbase,a6
jsr close(a6)
dosbase: dc.l 0
conhandle: dc.l 0
mytext:
dc.b $9b,'4;31;40m'
dc.b 'underline'
dc.b $9b,'3;33;40m',$9b,'5;20H'
dc.b '** Hello World !! **',0
align
end
Now that you've done text and character output,its time to move on
to text input.
[Link] Input.
---------------------
You can read keyboard input very [Link] just need to open the
I/O channel of the CON:window and read from [Link] need the read
function from the DOS library to do [Link] offset is -42.
The function has three parameters just like the WRITE function.
In D1 the handle number that you get from the WRITE function.
In D2 the address that the data read in is to start.
In D3 the number of bytes to read.
bp:
After this comes the code segment that closes the window again.
After loading the program into the AssemPro debugger,make "bp"a
breakpoint and start the program.(SEKA users start the program
with "g run"and enter "bp"as the breakpoint).The program quits at
the breakpoint and you can take a look at the results on the
[Link] you can continue the program (SEKA with "j bp") and
let the window close.
After starting the program and opening the window,the cursor
appears in the upper left corner of the [Link] some text and
press <Return>.The string that you just entered is output again on
the screen.
You use the "pmsg"routine from the previous chapter to do this
[Link] routine needs a null byte at the end of the text to be
[Link] put a null byte there by putting the address of the
input buffer in A0 and then erasing the byte at A0+D0 using the
CLR.B [Link] D0 contains the number of characters that were
entered,this byte is the first unused byte.
Since you're in the debugger you can redisplay the disassembled
output when the program ends to see what "getchr"put in "inbuff"
(SEKA owners can use "q inbuff"when the program ends to see what
"getchr"put there.)You'll find the characters that you typed plus
a closing $[Link] $A stands for the <Return> key and its counted
too,so if you entered a 12 and then hit <Return>,for example,D0
will contain a 3.
Try this again with a RAW:[Link] the window definition from
CON: to RAW:and reassemble the [Link]'ll notice the diference
right [Link] you've entered one character,a return is executed
D0 always as one bit in it.
The advantage of this form of input is that cursor and function
keys can be [Link] your own routine,you can repeatedly
accept input of characters using "getchr"and then work with the
special characters.
Theres another form of keyboard input:checking for a single key.
This is important when a program is about to execute an important
function and the user must say he wants it executed by entering
"Y"for [Link] can be treated as normal input,but in some cases,
there is a better method.
There is a function in the DOS library that waits a certain
specified length of time for a key to be pressed,and returns a
zero (FALSE) if no key was hit in this time [Link] returns a -1
($FFFFFFFF = TRUE) if one [Link] find out which key it takes
another [Link] WaitForChar function,is only good for tasks
like waiting for the user to let the program know that it can
continue scrolling text.
To wait one second for one key to be hit,you can use the following
routine:
WaitForCh=-30-174 ; (6.4.2C)
...
The TST command at the end of the program allows the calling
routine to use a BEQ or BNE command to evaluate the results of the
routine-BEQ branches if no key was [Link] doesn't.
Heres an example program in AssemPro format covering what you have
learned so [Link] and closing a window,displaying text in the
window and inputting text:
openlib =-30-378
closelib =-414
;execbase =4 ;defined in AssemPro
;Macros
* call to [Link]:
open =-30
close =-30-6
read =-42
write =-48
IoErr =-132
mode_old =1005
alloc_abs =-$cc
run:
bsr init ;initialization
bsr test ;system test
nop
bra qu ;quit and exit
test:
move.l #mytext,d0
bsr pmsg
bsr pcrlf
bsr pcrlf
move.l #80,d3 ;80 characters to read in (D3)
bsr getchr ;get character
bsr pmsg ;output line
rts
rts
ploop:
tst.b (a0)+
beq pmsg2
addq.l #1,d3
bra ploop ;check length
pmsg2:
move.l conhandle,d1
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6
rts
pcrlf:
move #10,d0
bsr pchar
move #13,d0
pch1:
lea outline,a1
move.b d0,(a1)
move.l a1,d2
move.l #1,d3 ;1 letter
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6 ;restore all
rts
error:
move.l dosbase,a6
jsr IoErr(a6)
move.l d0,d5
qu:
move.l conhandle,d1 ;window close
move.l dosbase,a6
jsr close(a6)
move.l dosbase,a1 ;[Link] close
move.l execbase,a6 jsr ;close lib (A6)
dosbase: dc.l 0
conhandle: dc.l 0
align
end
[Link] Control.
----------------------
Now that you've looked at console I/O,lets look at outputting data
from the [Link] first device that we'll discuss is the
printer.
Its very easy to use the [Link] just need to open another
[Link] goes just the way you learned it with CON: and RAW:
windows;the only difference is you enter PRT:instead.
You open this channel using the same lines that you used above for
the window except that the pointer is to the channel name PRT:in
[Link] pass the mode "new"(1006) in D2 in the "do_open"routine as
[Link] the handle number that comes back at a label called
"prthandle".
Now you can use the same output routines that you used with the
windows to send text to the [Link] need to put "prthandle"
instead of "conhandle"in the line with the "move.l conhandle,d1"
command.
Actually it would be better to eliminate this line from the
routine [Link] you can use the same routine for window and
printer [Link] calling procedure would then need to put
"conhandle"in D1 for window [Link] would put "prthandle" in D1
for printer [Link] is a very flexible output routine that can
be used for window and printer output [Link] can't accept input
from the printer,because the printer doesn't send [Link] just
accepts it and prints it.
[Link] I/O.
-----------------
Its just as easy to use the serial interface as the [Link]
enter SER:as the [Link] you can use the DOS functions READ
and WRITE just as before to do I/O channels you've just opened.
You can set the parameters for the interface (like Hand shake and
Transfer rate) with the Preferences program.
[Link] Output.
--------------------
The Amiga has a speech synthesizer built [Link] isn't quite as
easy to program as the I/O devices discussed earlier,[Link]
use the "[Link]"to do this.
This device requires several program steps to install it and then
causes it to [Link] need to open the device,start the I/O,etc..
Lets look at how to translate the text into the proper form and
then output the text.
First we need to do some [Link] define the constants
[Link] of them are new.
openlib =-408
closelib =-414
execbase = 4
;* Open [Link] *
clr.l d0 ;number 0
clr.l d1 ;no flags
lea nardevice,a0 ;pointer to device name
jsr opendevice(a6) ;open [Link]
tst.l d0 :error?
bne error ;Yes!
;* Open Window *
;*Translate the text into a form that the computor can use *
;* Speech output *
The computor waits until the <Return> key is [Link] you can
listen to what the Amiga as to [Link] the <Return> key is
pressed,the program stops.
qu: ; (6.4.5C)
move.l execbase,a6 ;EXEC base address
lea talkio,a1 ;pointer to I/O area
jsr abortio(a6) ;stop the I/O
move.l conhandle,d1
move.l dosbase,a6
jsr close(a6) ;close window
move.l dosbase,d1
move.l execbase,a6
jsr closelib(a6) ;close DOS library
lea talkio,a1
jsr closedev(a6) ;close [Link]
move.l tranbase,a1
jsr closelib(a6) ;close translator library
Now comes the data that you need for the program above:
Sex (0);
A zero means masculine and a one means feminine (more or less..)
Volume (64);
The volume can range from 0 to [Link] standard value is the
loudest possible.
openlib =-30-378
closelib =-414
;execbase =4 ;defined by AssemPro
open =-30
close =-30-6
opendevice =-444
closedev =-450
addport =-354
remport =-360
;DoIo =-456
sendIo =-462
abortIo =-480
read =-30-12
write =-30-18
;myinput =-30-24
;output =-30-30
;currdir =-30-96
;exit =-30-114
waitforch =-30-174
findtask =-294
translate =-30
mode_old = 1005
;mode_new = 1006
;alloc_abs =-$cc
;free_mem =-$d2
run:
bsr init ;initialization
bra test ;system-test
;* ;set up
sub.l a1,a1
move.l execbase,a6
jsr findtask(a6) ;find task
move.l d0,nwrrep+2
lea nwrrep,a1
jsr addport(a6) ;add port
bp:
lea talkio,a1 ;pointer to I/O in A1
move.l #nwrrep,14(a1) ;enter port address
move.l #amaps,48+8(a1) ;pointer to audio mask
move #4,48+12(a1) ;size of mask
rts
test:
move.l #mytext,d0
bsr pmsg ;test-text output
error:
move.l #-1,d7 ;flag
qu:
move.l execbase,a6
lea talkio,a1
jsr abortio(a6)
lea nwrrep,a1
jsr remport(a6) ;remove port
lea talkio,a1
jsr closedev(a6) ;close narrator device
move.l tranbase,a1
jsr closelib(a6) ;close translator library
mess1:
tst.b (a0)+
beq mess2
addq.l #1,d3
bra mess1 ;length calculate
mess2:
move.l conhandle,d1
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6
rts
pcrlf:
move #10,d0
bsr pchar
move #13,d0
pch1:
lea chbuff,a1
move.b d0,(a1)
move.l a1,d2
move.l #1,d3 ;1 letter
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6 ;restore all
rts
inplop:
bsr getchr
cmp.b #8,d0
beq backspace
cmp.b #127,d0 ;delete?
beq backspace
bsr pchar ;character output
cmp.b #13,d0
beq inputx
move.b d0,(a2)+
bra inplop
inputx:
clr.b (a2)+
sub.l #inline,a2
move a2,inline ;length in lines+1
movem.l (sp)+,d0-d7/a0-a6 ;registers
rts
backspace:
cmp.l #inline,a2 ;at the beginning?
beq inplop ;yes
move.b #8,d0
bsr pchar ;backspace
move #32,d0
bsr pchar ;blank
move #8,d0
bsr pchar ;backspace
clr.b (a2)
subq.l #1,a2
bra inplop
sayit:
lea intext,a0
move.l #outtext-intext,d0
lea outtext,a1
move.l #512,d1
move.l tranbase,a6
jsr translate(a6)
p:
lea talkio,a1
move #3,28(a1) ;??
move.l #512,36(a1)
move.l #outtext,40(a1)
move.l execbase,a6
jsr sendio(a6)
rts
dosbase: dc.l 0
tranbase: dc.l 0
conhandle: dc.l 0
inbuff: blk.b 8
end
[Link] Operations.
--------------------
The most important peripheral device for a computor like the Amiga
is the disk [Link] use it to save data,so that you don't lose
it when you turn off the [Link]'ll look at saving and
retrieving data in this chapter.
Lets first look at the simple disk operations that are used for
data [Link] gain access to a file,you must open it first.
This is done using the OPEN function from the DOS library,a
function that you're already familiar with.I'll assume in the
following examples,that you've already opened the DOS library.
[Link] Files.
-----------------
The open function needs a parameter for the [Link] mode has a
particular [Link] the file is opened for reading,it must
already [Link] mode for the OPEN function must be "old"(1005)
in this case.
If you want to produce a file,you must open it [Link] it does
not exist,you use the "new"(1006) [Link] a file is opened for
writing using this mode even though a file with this name already
exists,the old file with this name is erased and [Link] avoid
loss of data,you should check if a file by that name already
exists and then output an error message if it does.
You're going to start with a subroutine that opens a [Link]
assume that the filename starts at the label "filename",and that
it is closed with a null [Link] just need to pass the mode in
register D2.
The routine puts the file handle number in "filehd"and returns to
the main [Link] the operation with the handle is the last
one performed by the subroutine,the status of the operation can be
evaluated once the return has been [Link] the operation went
smoothly and the file is opened,the handle number has a non-zero
[Link] it is zero and "bsr openfile"is followed by "beq error",
you can branch to an error handling routine when problems occur.
To use these subroutines,you must look at how you can load and
save data.
Lets assume you want to write a short text [Link] the example
lets use:
In D1 the file handle that you got back from the OPEN function.
In D2 a pointer to the data that should be written.
In D3 the number of bytes to be written.
After opening the file,you can call the subroutine from the main
program with the following lines:
move.l #text,d2 ;pointer to data
move.l #textend-text,d3 ;number of bytes
bsr writedata ;write data in the file
To use this routine to load the file into the buffer "field",use
the following main program:
The file is [Link] can't save the file with normal methods if
you accidently erase it!You can use a trick that saves the data.
We'll take a look at this trick [Link] used in lots of programs
[Link] Files.
-------------------
When a text editing program writes a text that as be altered back
to the disk,the old file usually isn't [Link] the old file
is [Link] example,it might get the name "Backup".The new file
is written to disk with the old name.
The function in the DOS library that allows you to change the
names of programs is called RENAME and has -78 as an [Link]
need to pass two parameters-D1 as a pointer to the old name and D2
as a pointer to the new name of the file.
rename =-78
...
move.l dosbase,a6 ;DOS base address in A6
move.l #oldname,d1 ;pointer to old name in D1
move.l #newname,d2 ;pointer to new name in D2
jsr rename(a6) ;rename file
...
oldname: dc.b "testfile",0
newname: dc.b "backup",0
[Link] Directory.
--------------------
Lets pretend you've programmed a text editor and started [Link]
you want to load a text from disk and edit it-but whats the name
of that file?
You need a function to read and display the directory of the disk.
There are several ways to do [Link] lets use the easiest
[Link] doesn't require much programming and can be quite
useful.
The trick is to call the Dir or List programs that are in the C
[Link]'ll use the CLI [Link] DOS library contains a
command called "Execute"with offset -222 that allows you to
execute CLI commands.
The function needs three parameters:
In D1 a pointer to a string closed with a zero that contains the
name of the command to be [Link] string must
contain the same command that you would give in the [Link]
can be a null pointer as well.
In D2 the input file is [Link] theres a zero here.
If however,you give the file handle of a text file,though,
this file is read and interpreted as a command [Link]
you define a window as the input medium,you've programmed
a new CLI window!
In D3 the output file is [Link] there a zero here,the
output of the commands (for example,DIR output) is sent to
the standard CLI window.
command:
dc.b "dir",0
openlib =-408
closelib =-414
;execbase = 4 ;defined in AssemPro
;macros
open =-30
close =-36
execute =-222
IoErr =-132
mode_old = 1005
alloc_abs =-$cc
rts
test:
bsr dir ;do directory
bra qu ;quit and exit
dir:
move.l dosbase,a6 ;DOS base address in A6
move.l #command,d1 ;pointer to command line
clr.l d2 ;no input (CLI window)
move.l conhandle,d3 ;output in our window
jsr execute(a6) ;execute command
rts
error:
move.l dosbase,a6
jsr IoErr(a6)
move.l d0,d5
qu:
move.l conhandle,d1 ;window close
move.l dosbase,a6
jsr close(a6)
end
[Link] Directory.
---------------------
Now,lets look at another method that doesn't need the [Link] this
way,you can read the directory of any disk without having to play
Disk Jockey.
You need to writ a program that does what CLI's Dir program does.
There are several steps.
First you must give the system a key to the desired [Link]
means you must call DOS'Lock [Link] needs two parameters:
You call the Lock function (offset -84) and get either a point to
the key or a zero returned to you in the D0 [Link] you get a
zero,the call did'nt work,the file was'nt [Link] function can
be used to find if a file is on the [Link] use this function
with the name and see if D0 comes back [Link] not,the file
exists.
Lets assume the file or path [Link] need to save the value
that came back in [Link]'ll need it for both functions that you'll
call.
The next function you need is called [Link] use it to search
the disk for an acceptable [Link] returns parameters like name,
length and date that correspond to the [Link] need to reserve a
memory block for this information and put the beginning of the
block in D2 before calling the Examine [Link] the key you
got from the Lock function in the D1 register.
The memory area that is filled with information is called a
[Link] 260 bytes long and contains information about
the [Link] name starts in the 9th byte and ends with a null byte
so you can easily print it with our "pmsg"[Link] information
that Examine gives isn't about a particular file,but about the
[Link] name in FileInfoBlock is the disk name.
The Examine function sends the status back in the D0 register.
Since the Lock function already tested if the file existed,evalua-
ting the status really isn't necessary.
Now to the function that you can use to read individual files from
the [Link] function is called ExNext (Examine Next).This
function searches for the next entry that fits the key every time
it is [Link] gets the same parameters as Examine gets.
However,the return parameter in D0 is more important here.
The ExNext function is always called in the same [Link] always
gets the next entry of the [Link] no more entries exist in
the directory,ExNext puts a zero in the D0 register.
You need to continue performing this operation until there aren't
any more [Link] can find this using the IoErr function from
the DOS library.
This function doesn't need any [Link] returns the status of
the last I/O operation that was performed in the D0 [Link]
the last ExNext,this value is 232,which means no_more_Entries.
; [Link]
;***** DOS-Sample function 3/87 S.D. *****
openlib =-30-378
closelib =-414
exbase =4
open =-30
close =-30-6
read =-30-12
write =-30-18
myinput =-30-24
output =-30-30
currdir =-30-96
lock =-30-54
examine =-30-72
exnext =-30-78
exit =-30-114
IoErr =-30-102
waitforch =-30-174
mode = 0
mode_old = 1005
mode_new = 1006
alloc_abs =-$cc
free_mem =-$d2
run:
bsr init ;initialization
bra test ;system-test
rts
test:
move.l #mytext,d0
bsr pmsg ;test-text output
move.l dosbase,a6
move.l #name,d1
move.l #-2,d2
jsr lock(a6)
move.l d0,d5
tst.l d0
beq error
move.l d0,locksav
move.l dosbase,a6
move.l locksav,d1
move.l #fileinfo,d2
jsr examine(a6)
move.l d0,d6
tst.l d0
beq error
loop:
move.l dosbase,a6
move.l locksav,d1
move.l #fileinfo,d2
jsr exnext(a6)
tst.l d0
beq error
move.l #fileinfo+8,d0
bsr pmsg
bsr pcrlf
bra loop
error:
move.l dosbase,a6
jsr ioerr(a6)
move.l d0,d6
move.l #presskey,d0
bsr pmsg
bsr getch
move.l #-1,d7 ;flag
qu:
move.l conhandle,d1 ;window close
move.l dosbase,a6
jsr close(a6)
mess1:
tst.b (a0)+
beq mess2
addq.l #1,d3
bra mess1
mess2:
move.l conhandle,d1
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6
rts
pcrlf:
move #10,d0
bsr pchar
move #13,d0
pch1:
lea chbuff,a1
move.b d0,(a1)
move.l a1,d2
move.l #1,d3
move.l dosbase,a6
jsr write(a6)
movem.l (sp)+,d0-d7/a0-a6 ;restore all
rts
inplop:
bsr getchr
cmp.b #8,d0
beq backspace
cmp.b #127,d0 ;delete?
beq backspace
bsr pchar ;character output
cmp.b #13,d0
beq inputx
move.b d0,(a2)+
bra inplop
input:
clr.b (a2)+
sub.l #inline,a2
move a2,inline ;length in inline+1
movem.l (sp)+,d0-d7/a0-a6 ;registers
rts
backspace:
cmp.l #inline,a2 ;at beginning?
beq inplop ;yes
move.b #8,d0
bsr pchar ;backspace
move #32,d0
bsr pchar ;blank
move #8,d0
bsr pchar ;backspace
clr.b (a2)
subq.l #1,a2
bra inplop
end
If you want to have the program output the file length as well,you
can read the length with "move.l fileinfo+124,d0"and then use a
conversion routine to produce a decimal [Link] can output this
result with the name.
openlib =-408
closelib =-414
execbase = 4
open =-30
close =-36
opendevice =-444
closedev =-450
sendIo =-462
read =-30-12
write =-30-18
waitforch =-30-174
mode_old = 1005
run:
bsr init ;initialization
bra test ;system-test
And now for the functions that take care of the various messages
at the end of the program.
error:
move.l #-1,d7 ;flag for error (for SEKA)
qu:
move.l execbase,a6 ;exec base address
lea diskio,a1 ;pointer to disk I/O
move.l 32(a1),d7 ;IO_ACTUAL in D7 (for testing)
move #9,28(a1) ;command motor on/off
move.l #0,36(a1) ;0=off,1=on,so turn motor
jsr sendio(a6) ;off
move.l conhandle,d1 ;close window
move.l dosbase,a6
jsr close(a6)
move.l dosbase,d1 ;close [Link]
move.l execbase,a6
jsr closelib(a6)
lea diskio,a1
jsr closedev(a6) ;close [Link]
rts
Lets not forget the routine that waits for the user to press
<Return>,so that you can watch the effects of the test function in
peace:
The last thing you need is the section of code that declares the
text and data fields that your program needs:
There,now you've done with the set up [Link] look at how you
can give commands to the disk [Link] first and easiest command
is the one for turning the drive motor on and [Link]'ve already
seen this command in the [Link] is command number [Link]
number goes in the command word of the I/O structure (bytes 28 and
29 of the structure).
You need to pass a parameter that lets the computor know whether
to turn the motor off or [Link] information goes in the I/O long
word that starts at byte 36:its zero for off,and one for on.
You already chose the motor that should be turned on or off when
you opened the [Link] put the number of the chosen disk drive
in D0-in your case you put a zero there because you are using the
DFO:disk drive.
Heres an overview of the commands you can use to access
information on the disk:
No Name Function
-----------------------------------------------------------------
2 READ Read one or more sectors
3 WRITE Write sectors
4 UPDATE Update the track buffer
5 CLEAR Erase track buffer
9 MOTOR Turn motor on/off
10 SEEK Search for a track
11 FORMAT Format tracks
12 REMOVE Initialize routine that is called when you
remove the disk
13 CHANGENUM Find out number of disk changes
14 CHANGESTATE Test if disk is in drive
15 PROTSTATUS Test if disk is write protected
test: ; (6.5.7B)
lea diskio,a1 ;pointer to I/O structure
move #13,28(a1) ;pass command (for example 13)
move.l execbase,a6 ;execbase address in A6
jsr sendio(a6) ;call function
The data address is the number of the first byte in the [Link]
you want to use the first sector,the offset is [Link] the second
sector,its 512,etc...The formula is:
Here is a routine that loads the first two sectors of the disk
into the buffer:
test: (6.5.7C)
lea diskio,a1
move #2,28(a1) ;command:READ
move.l #diskbuff,40(a1) ;buffer
move.l #2*512,36(a1) ;length:2 sectors
move.l #0*512,44(a1) ;offset:0 sectors
move.l execbase,a6 ;exec base address
jsr sendio(a6) ;start function
Start the program from the debugger and then look at the buffers
contents after the program [Link] can find out the format of the
disk [Link] you want to read a sector thats being used,change the
0 in the offset definition to 700 and start [Link] highly
probable that theres some data there.
To modify and write back the data that you've read from the disk,
you need command number three,the WRITE [Link] parameters are
the same.
If you've executed the WRITE commandyou're probably wondering why
the disk light did'nt go [Link] because the Amiga writes a track
that as been read into a buffer on its [Link] WRITE's data there
as [Link] won't write the data to disk until another track is
accessed.
You can have the data updated directly as well using command four,
the UPDATE command.
Command 11,the FORMAT command,is also quite [Link]
command needs a data field that is 11*512=5632 bytes long-the
length of a [Link] offset must be a multiple of this number so
that you start at the beginning of a track.
The length must be a multiple of 5632 as a [Link] several
tracks are formatted,each track is filled with the same data.
You can use this function to easy write a disk copy [Link]
READ the source disk and then FORMAT the corresponding track on
the destination [Link] how the DiskCopy program works-it
reformats the destination disk.
Command ten,the SEEK command,just needs the [Link] moves the
Read/Write head of the drive to the position specified without
making a disk access or testing if its at the right position.
Command 12,the REMOVE command,is used to install an interrupt
routine that is called when the disk is removed from the disk
[Link] address of the interrupt structure is passed in the data
pointer of the I/O [Link] theres a zero here,the interrupt
routine is turned off.
openlib =-30-378
closelib =-414
;execbase = 4 ;defined in INIT_AMIGA
open =-30
close =-30-6
opendevice =-444
closedev =-450
sendIo =-462
read =-30-12
write =-30-18
waitforch =-30-174
mode_old = 1005
run:
bsr init ;initialization
bra test ;system test
lea diskio,a1
move.l #diskrep,14(a1)
clr.l d0
clr.l d1
lea trddevice,a0
jsr opendevice(a6) ;open [Link]
tst.l d0
bne error
bp:
lea consolname(pc),a1 ;console-definition
move.l #mode_old,d0
bsr openfile ;console open
beq error
move.l d0,conhandle
rts
test:
bsr accdisk
error:
move.l #-1,d7 ;flag
qu:
move.l execbase,a6
lea diskio,a1
move #9,28(a1)
move.l #0,36(a1)
jsr sendio(a6)
lea diskio,a1
move.l 32(a1),d7
jsr closedev(a6)
accdisk:
lea diskio,a1
move #2,28(a1) ;command:READ
move.l #diskbuff,40(a1) ;buffer
move.l #2*512,36(a1) ;length:2 sectors
move.l #20*512,44(a1) ;offset: n sectors
move.l execbase,a6
jsr sendio(a6)
rts
end
Chapter 7.
----------
[Link] With Intuition.
-------------------------
Now that you've learned so much about machine language,lets look
at the special features of the [Link] look at the operating
system Intuition that is in charge of windows,screens,the mouse
and lots of other [Link] a look at these beautiful
features,theres some bad news.
First,though,lets here the good [Link] Intuition has so many
functions,it allows you to be very creative in programming your
[Link] disadvantage is that the flexibility means that you have
to use a lot of parameters,and that makes for a lot of tedious
work.
However,this is no grounds for [Link] you've built up the
necessary routines,the programming and experimentation becomes
increasingly [Link] you try out new program variations
you should save your source code to disk,because Intuition gets
fairly upset about bad parameters and often responds by crashing
the system.
Now lets get to [Link] start working with Intuition,you need the
Intuition [Link] can load it with the OpenLibrary function
from the EXEC [Link] the subroutine that takes care of
initialization.
openlib =-408
execbase = 4
run:
bsr openint ;load intuition library
...
closelibrary =-414
...
closeint: ;*close intuition
move.l execbase,a6 ;exec base address in A6
move.l intbase,a1 ;intuition base address in A1
jsr closelibrary(a6) ;close intuition
rts ;done
Now that you've got that taken care of,you can finally start
working with Intuition.
[Link] Screen.
----------------
Intuition is a graphics operating [Link] this reason,you'll be
working with the [Link] even more interesting to work with
several screens at the same [Link],you only have one monitor
on the Amiga.
You can open as many screens as you like (at least,as long as
theres some memory available).You can open a window,display menus
and do I/O's [Link] individual screens are fully independant.
You can work with all of them simultaneously on the monitor.
You can move individual screens forward and back to your hearts
[Link] can also press the left <Amiga> key and then an "m"to
return to the workbench screen after getting into the different
screens.
You want to begin programming Intuition by setting up a [Link]
have already loaded the Intuition library,so you can use the Open-
Screen function.
Wait a minute!What should the screen look like,where should it go,
and what form should it have?You need to look at the options for
the form of the screen you have available.
The input to the screen is in the form of a table that has 13
[Link] take a look at the parameters that you need for our
screen.
You'll start the table with the label "screen_defs"which must be
at an even address:
align
screen_defs: ;The screen table begins here
The first bit of information that the screen needs is the position
and [Link] have it start in the upper left corner and fill the
entire [Link]'ll use the positions X=0 and Y=0,the width 320
and the height [Link] means that your screen is the maximum
size.
Next you need to choose the colour of the title line and the
function [Link] the number of the colour register:
Make sure that these two inputs fit in a [Link] colours are
normally the following (if the standard values have'nt been
changed).You'll notice that the number of colours depends on the
number of bit maps.
Pen Colour
---------------------------------------------------------
0 Background (blue)
1 White
for two bit planes
2 Black
3 Red
for three bit planes
4 Blue
5 Violet
6 Turquoise
7 White
for four bit planes
8 Black
9 Red
10 Green
11 Brown
12 Blue
13 Blue
14 Green
15 Green
The next word contains the bits that describe the appearance of
the [Link] bits are:
Next theres a pointer to the text thats used as the name of the
[Link] text ends with a zero,just like window names must.
Finally theres a long word that you only need if you want to use
the special bitmap just for your [Link] this isn't the case,
just put a zero here.
Thats it for the list entries that you need to define the screen.
You still need the text for the name of the [Link] the
following:
align
screen_defs: ;*The screen ta
x_pos: dc.w 0 ;X-position
y_pos: dc.w 0 ;Y-position
width: dc.w 320 ;width
height: dc.w 200 ;height
depth: dc.w 2 ;number of bitplanes
detail_pen: dc.b 0 ;colour of the text,etc...
block_pen: dc.b 1 ;background colour
view_modes: dc.w 2 ;representation mode
screen_type: dc.w 15 ;screen type:custom screen
font: dc.l 0 ;character set:standard
title: dc.l sname ;pointer to title text
gadgets: dc.l 0 ;no gadgets
bitmap: dc.l 0 ;no bit map
sname: dc.b 'Our Screen',0 ;screen title
openscreen =-198
bsr openint ;open intuition
bsr scropen ;open screen
...
scropen: ;*open screen
move.l intbase,a6 ;intuition base address in A6
lea screen_defs,a0 ;pointer to table
jsr openscreen(a6) ;and open
move.l d0,screenhd ;save screen handle
rts ;return to main program
...
screen_defs: ;table info follows
closescreen =-66
...
scrclose: ;* close screen
move.l intbase,a6 ;intuition base address in A6
move.l screenhd,a0 ;screen handle in A0
jsr closescreen(a6) ;clos screen
rts ;done
No Name Function
------------------------------------------------------------------
0 (NextScreen.L) Pointer to next screen.
4 (FirstWindow) Pointer to first window structure
8 (LeftEdge.W)
$A (TopEdge.W) Position of screen
$C (Width.W) Width
$E (Height.W) Height
$10 (MouseY.W)
$12 (MouseX.W) Mouse position in the screen
$14 (Flags.W) Screen flags
$16 (Title.L) Pointer to title text
$1A (DefaultTitle) Pointer to normal title
$28 (Font.L) Pointer to character set
$C0 (Plane0.L) Pointer to bitplane 0
$C4 (Plane1.L) Pointer to bitplane 1
$C8 (Plane2.L) Pointer to bitplane 2
$CC (Plane3.L) Pointer to bitplane 3
lop1:
move d0,(a5) ;write counter bits in picture
add.l #80,a5 ;address+80,next line
dbra d0,lop1 ;continue until D0 < 0
MoveScreen =-162
...
scrmove: ;*move screen D0 to the right
;and D1 down
move.l intbase,a6 ;intuition base address in A6
move.l screenhd,a0 ;screen handle in A0
clr.l d0 ;no horizontal movement
jsr movescreen(a6) ;move screen
rts ;done
movescreen =-162
openscreen =-198
closescreen =-66
closelibrary =-414
openlib =-408 ;open library
execbase = 4 ;exec base address
joy2 =$dff00c ;joystick 2 data
fire =$bfe001 ;firebutton 2:bit 7
run:
bsr openint ;open intuition
bsr scropen ;open screen
move joy2,d6 ;save joystick info
loop:
tst.b fire ;test fire button
bpl ende ;pressed down:done
move joy2,d0 ;basic info in D0
sub d6,d0 ;subtract new data
cmp #$0100,d0 ;up?
bne noup ;no
move.l #-1,d1 ;dy=-1 direction y
bsr scrmove ;move up
bra loop
noup:
cmp #$0001,d0 ;down?
bne loop ;no
move.l #1,d1 ;dy=1
bsr scrmove ;move down
bra loop
ende:
bsr scrclose ;close screen
bsr closeint ;close intuition
rts ;done!
From this example,you can see how easy scrolling actually is.
Another easy thing to do is to use the DisplayBeep [Link] as
an offset -96;the only parameter it needs is the screen pointer
that you stored in the "screenhd"memory [Link] function covers
the screen with an orange colour for a short [Link] screen is
not [Link] beep function can be used as follows:
DisplayBeep: =-96
...
move.l intbase,a6 ;intuition base address in A6
move.l screenhd,a0 ;screen pointer in A0
jsr displaybeep(a6) ;light up screen
[Link] Window.
----------------
As you saw in the chapter on program initialization,its easy to
open a window with the DOS [Link] can't use this method on
your own screen [Link] need to use another method that can
open any window on any screen.
Intuition has a function called OpenWindow which handles this sort
of [Link] has an offset of -204 and needs only one parameter,a
pointer to a window definition [Link] pointer goes in register
A0.
This table is very similar to the one used to define the screen.
The first four values specify the X-and Y-positions,the width,and
the height of the window to be [Link] an example:
align
window_defs:
dc.w 10 ;x-position
dc.w 20 ;y-position
dc.w 300 ;width
dc.w 150 ;height
Next come two bytes that define the colour of the letters on the
background:
The next long word contains the IDCMP flags in its [Link] bits
determine the circumstances under which Intuition sends a message
to the [Link] bits have the following meanings:
Next comes a long word whose bits determine the windows [Link]
can use this to construct a window to your exact specifications.
This is quite different from windows opened with the DOS function.
The bits mean:
The next long word in the list allows you to use your own gadgets
in the [Link] long word is a pointer to the structure of a
your [Link] you don't want this,just put a zero here.
The next long word is a pointer to the screen structure that you
got back after calling the OpenScreen [Link] easiest way to
do this is to save the pointer to this location in the buffer:
The next long word is a pointer to a bit map if you want one of
your own for the [Link] you don't want one,put a zero here.
Next come four values that set the maximum and minimum width and
height of the window:
The last value in the list is the screen type of the screen the
window is located [Link] a 15 [Link]'re using our screen as a
custom screen:
align
window_prefs:
dc.w 10 ;X-position
dc.w 20 ;Y-position
dc.w 300 ;width
dc.w 150 ;height
dc.b 1 ;white print colour
dc.b 3 ;on red background
dc.l $200 ;IDCMP flags:CLOSEWINDOW
dc.l $100f ;ACTIVATE and all gadgets
dc.l 0 ;first gadget:no gadgets of
;our own
dc.l 0 ;checkmark:standard
dc.l windowname ;pointer to window name
screenhd: dc.l 0 ;screen pointer
dc.l 0 ;no bitmap of our own
dc.w 150 ;smallest width
dc.w 50 ;smallest height
dc.w 320 ;maximum width
dc.w 200 ;maximum height
dc.w 15 ;screen type:custom screen
Insert these lines in the program you listed [Link] are two
subroutines for opening and closing the window:
openwindow =-204
closewindow =-72
...
windopen:
move.l intbase,a6 ;intuition base address in A6
lea windowdef,a0 ;pointer to window definition
jsr openwindow(a6) ;open window
move.l d0,windowhd ;save window handle
rts
windclose:
move.l intbase,a6 ;intuition base address in A6
move.l windowhd,a0 ;window handle
jsr closewindow(a6) ;close window
rts
...
windowhd: dc.l 0 ;window handle
[Link].
---------------
If you only have one disk drive,you've certainly seen the Amiga
message,"Please insert xxx in unit 0",a [Link] window is another
that has two fields for [Link] sort of message with a
choice of options is called a requester.
You want to take a look at how to program a [Link],you
need a window for the requester to appear [Link] opened a window
of this sort in the example program.
To display a requester,use the Intuition function AutoRequest
(offset -348).It takes care of drawing and managing the requester.
This function needs the following parameters:
autorequest =-348
...
request:
move.l windowhd,a0 ;pointer to window structure
lea btext,a1
lea ltext,a2 ;pointer to text structure
lea rtext,a3
move.l #0,d0 ;left activates by clicking
move.l #0,d1 ;right activates by clicking
move.l #180,d2 ;width and
move.l #80,d3 ;height of requester
move.l intbase,a6 ;intuition base address
jsr autorequest(a6) ;display requester
rts
btext:
dc.b 2 ;black text colour
dc.b 0 ;background colour
The next byte specifies the character mode.A zero means that the
text is output normally.A four means the text is output inverted.
The next entries are [Link] this reason the addresses must be
even,so you need to either insert another byte or use the "align"
[Link] following words are the X-and Y-position of the text
relative to the upper left corner of the requester.
dc.w 10 ;X-position
dc.w 5 ;Y-position relative to upper
;left corner
Next you need to give the address of the text that should be
[Link] text must be closed with a null byte.
You need a long word at the end of the list that is either a
pointer to another text or a zero if no more text is needed.
Here are the three text structures that you need for the example:
bodytxt:
dc.b "Requester Text",0
align
ltext: ;text structure of left button
dc.b 0,1 ;colour
dc.b 0 ;mode
align
dc.w 5,3 ;text position
dc.l 0 ;standard font
dc.l lefttext ;pointer to text
dc.l 0 ;no more text
lefttext:
dc.b "left",0
align
rtext:
dc.b 0,1 ;colour
dc.b 0 ;mode
align
dc.w 5,3 ;text position
dc.l 0 ;standard font
dc.l righttext ;pointer to text
dc.l 0 ;no more text
righttext:
dc.b "right",0
align
[Link] Handling.
-------------------
Pretend you've opened a window that as a close symbol,and you want
the program to react to this symbol being [Link] need a
signal from Intuition that lets you know that an event as taken
[Link] signal is called a message.
The IDCMP flag of the window specifies which events should cause
Intuition to send a [Link] setting the bits for WINDOWCLOSE,
you can allow a message to be sent when the close symbol is
clicked.
To get the message,you can use the EXEC function GetMsg (offset
-372).It needs the source address of the event as a [Link]
the source is the User port (which doesn't have anything to do
with the User port on old Commodore computors).
The User port contains a table which has entrieswhich specify the
events that have taken place and related things like mouse
position and time.
How do you find the User port?Use the pointer to the window
structure that you got back from the OpenWindow function and
stored in the "windowhd"memory block.
This pointer points to the window structure of this [Link]
structure consists of a number of [Link] are copies of the
parameters from our window definition [Link] won't cover all the
entries,because most won't be interesting to [Link]'re more
interested in the pointer to the User [Link] in the window
structure.
You can find this in the long word that begins in the 86th byte of
the [Link] can get this long word with the following lines
of code:
You can call the GetMsg function with this pointer in A0 by using
the following lines of code in your program:
GetMsg = -372
...
move.l windowhd,a0 ;pointer to structure in A0
move.l 86(a0),a0 ;user port pointer in A0
move.l execbase,a6 ;exec base address in A6
jsr getmsg(a6) ;get message
This function returns a value in the D0 [Link] value is a
pointer to another structure,the Intuition Message [Link]
theres a zero in D0,no event as taken place.
The long word that starts at the 20th byte in this structure
contains the information about which event took [Link]
the information is easy,since the bits of this long word have the
same meaning as the IDCMP flag that you described when you looked
at opening windows.
Put the lines above after "loop"and then insert the following:
Now you can end this program by clicking the close [Link] way
you can find out if an event as taken [Link] can use D6 to
determine what event took [Link] the example,D6 contains the
number $00000200,which means that the close symbol was clicked.
To see if this works with other events,change the $200 IDCMP flag
to $10200 in the window definition [Link] you've assembled and
started this version,take the disk out of the drive-the program
terminates.
The IDCMP flags that you've got now cause the clicking of the
close symbol and the taking out of the disk (DISKREMOVED) to be
[Link] you want to find out which of the events took place,
you can look in [Link] has a $200 in it if the window is closed,a
$10000 if the disk was removed.
[Link] Programming.
---------------------
Now lets look at one of Intuitions more interesting capabillities:
menu [Link] using menus,you can make your programs very
user friendly.
There are a lot of ways for you to use [Link] can make menu
points unusable,output sub-menus,choose the type of menu entries
(allow text or pictures to be output),etc..To have lots of options
you need some parameters.
Lets produce a menu with the SetMenuStrip function (offset -264)
of [Link] function only needs two parameters,a pointer to
the menu structure of the window to be drawn and a pointer to the
window structure of the window in which the menu is to function.
Each window can have its own menu that is active when the window
is activated.
Heres the subroutine to set up the menu:
SetMenuStrip =-264
...
setmenu: ;* Initialize a menu
move.l intbase,a6 ;intuition base address in A6
move.l windowhd,a0 ;pointer to window structure
lea menu,a1 ;pointer to menu structure
jsr setmenustrip(a6) ;call function
rts
ClearMenuStrip =-54
...
clearmenu:
move.l intbase,a6 ;intuition base address in A6
move.l windowhd,a0 ;pointer to window structure
jsr clearmenustrip(a6)
rts
align
menu:
dc.l menu1 ;pointer to the next menu
Next come two words which contain tha X- and Y-position of the
menu title:
dc.w 20 ;X-position
dc.w 0 ;Y-position
Next,use two words to store the menu titles width and height in
pixels:
dc.w 50 ;width
dc.w 10 ;height of menu title
The next word contains the flag bit that determines whether the
menu is available or [Link] unavailable menu either as grey
entries or they are drawn [Link] the flag bit,bit 0,is set the
menu is [Link],it is not.
The last entries in the table are four words that are reserved for
internal [Link] must be here.
align
menuitem01:
dc.l menuitem02 ;pointer to next menu item
Next comes the four words:the X- and Y-position,the width and the
height of the box the menu entry goes [Link] size becomes obvious
when the item is chosen by having the right mouse key clicked on
[Link] the box becomes [Link] you can see,the next word is
determined in the [Link] lets set the position and size of
the menu point,though:
The position entries are relative to the upper left corner of the
menu that is pulled down.
The following word was described above:it contains flags for
entries to this menu [Link] are several interesting variations
[Link] following flag bits are contained in this word:
Name Description
------------------------------------------------------------------
CHECKIT If this bit is set,a check or a user-defined
drawing is put in front of the text when the item
is [Link] text should begin with two blanks.
The two previous bits determine the mode of the chosen menu item.
The following combinations are possible:
Lets get back to the structure of the menu [Link] the flag
word,there is a long word whose flag bits determine whether this
menu point can be turn off another [Link] this to zero:
Now comes the pointer to the structure of the text that should be
[Link] the ITEMTEXT bit isn't set,this pointer must point to
the structure of the [Link] nothing should be shown,you can
set this to [Link] a text in the example and write the
following:
The following long word only has a meaning if the HIGHIMAGE flag
is [Link] this long word points to the text or the drawing that
should be displayed when the menu items box is [Link]
the long word is ignored,so insert a zero:
align
dc.l 0 ;no submenu
dc.l 0 ;preparation
Thats the structure for a menu [Link] still need the text
structure for the text of the [Link] isn't complicated,but it
makes you get into fine details about the form of the [Link]'ve
already learned about this text structure when you looked at
requesters,so we'll skip an explanation.
Heres the complete structure of an example [Link] can use two
menus,each with two [Link] second menu point of the left
menu has a submenu with two [Link] ought to type this program
in,so that you can experiment with [Link] can also use this
example to evaluate the clicked menu item.
Menu 1;
The first item,"Point 0.1",can be chosen using the right <Amiga>
key and the "1" [Link] point alternates between checked and not
checked,which can easily be used to check out the key [Link]
the item is checked and you hit both keys,the check disappears and
vice [Link] box at this point is framed when the mouse pointer
clicks on it.
The second item,"Point 0.2",can be chosen using the right <Amiga>
key and the "2"[Link] item is checked the first time it is
[Link],in contrast to the item above,it can't be erased.
The box of this item is inverted when clicked.
Menu 2;
These two points can't be chosen using [Link] box of the upper
item is inverted when clicked on:the lower one is [Link] you
click the second item,"Point 1.2",a submenu with two entries is
displayed.
loop:
move.l execbase,a6 ;exec base address in A6
move.l windowhd,a0 ;window structure pointer
move.l 86(a0),a0 ;user point pointer in A0
jsr getmsg(a6) ;get message
tst,l d0 ;whay happend?
beq loop ;nothing happend
move.l d0,a0 ;message pointer in A0
move.l $14(a0),d6 ;event in D6
move $18(a0),d7
You now have the code for the clicked menu item in the D7
[Link] the user just pressed the right key and let it go
without choosing a menu item,you'll find a $FFFF [Link] word
doesn't contain just one,but three pieces of information:
The numbering begins with zero-ie the first menu point of the
first menu has the numbers 0 and 0.
This program is set up in such a way that up to four menus can lie
next to each other (in normal screen resolution),which is often
[Link] table above ends by putting a zero instead of a pointer
to the nxt menu [Link] you can see,its pretty simple.
This program is inserted in your big program right behind the
"setmenu"[Link] the "bsr setmenu"command is executed,the menu
structure is built and initialized at the same [Link] don't need
to change the rest of the program,it'll be shorter that way.
menuloop:
clr.l d2 ;vertical menu position=0
move.l a1,a2 ;save address of pointer
tst.l (a0) ;another menu there?
beq setmenu1 ;no:quit
clr.l (a1)+ ;"no more menus"preperations
move d1,(a1)+ ;set X-position
add.l #70,d1 ;and increment
move.l #50,(a1)+ ;Y-position and width
move.l #$a0001,(a1)+ ;height and flag
move.l (a0)+,(a1)+ ;menu title
lea 12(a1),a3
move.l a3,(a1)+ ;pointer to menu item
clr.l (a1)+ ;reserved words
clr.l (a1)+
itemloop:
tst.l (a0) ;last entry?
beq menuend ;yes:menu done
lea 54(a1),a3
move.l a3,(a1)+ ;pointer to next item
move.l d2,(a1)+ ;X- and Y-positions
add #10,d2 ;Y-position+10
move.l #$5a000a,(A1)+ ;WIDTH/HEIGHT
move #$52,(a1)+ ;flag:normal
clr.l (a1)+ ;no connection
lea 16(a1),a3
move.l a3,(a1)+ ;text structure pointer
clr.l (a1)+ ;no fill structure
clr.l (a1)+ ;no command,no submenu
clr.l (a1)+ ;and no continuation
move #$1,(a1)+ ;set text structure:colour
clr.l (a1)+ ;mode 0
move.l #$50003,(a1)+ ;X- and Y-position
clr.l (a1)+ ;standard character set
move.l (a0)+,(a1)+ ;text pointer
clr.l (a1)+ ;no continuation
bra itemloop ;next item...
You need three things yet for this program:the memory to be used
for the structure,the table of text pointers and the [Link] an
example:
mentab:
dc.l menu1 ;first menu title
dc.l mp11,mp12,mp13 ;menu items
dc.l 0 ;end of menu 1
dc.l menu2 ;second menu title
dc.l mp21,mp22,mp23 ;menu items
dc.l 0 ;end of menu 2
dc,l 0 ;you're out of menus!
Make sure that the memory area reserved for the menu structure is
big enough and change the entry "blk.w 500"to the calculated
value.
If you use this program,and want to build some special features
into the menu (for instance key commands),you can make entries in
the menu structure table while the program is [Link] can find
the word (or byte or long word) that interests you in the table as
follows:
For example,to find the keyboard command byte of the second entry
in the first menu,calculate as follows:
Address = Start_address+Menu*30+(entry-1)*54+26
Address = menu+30+54+26
= menu+110
[Link] Output.
----------------
Its very easy to use Intuition's text output [Link] the
PrintIText function (offset -216).It needs four parameters.
PrintIText = -216
...
print:
move.l intbase,a6 ;intuition base address in A6
move.l windowhd,a0 ;address of window structure
move.l 50(a0),a0 ;rastport address in A0
jsr printitext(a6) ;call function
rts
You can try out this routine by using the requesters text that is
still in a structure of the [Link] the following lines
before the "loop"label:
Start the program and the text appears in the middle of the window
If this doesn't happen,check the colour of the text in the text
[Link] probably [Link] change it to three,and the text
appears in red the next time you start the program.
[Link].
-----------
An image is a drawing that goes in a rectangular field and is
defined [Link] disk symbol of the Intuition screen and the
system gadgets in the screen and window borders are examples of
such Images.
The rectangle that the drawing goes in can be arbitrarily large,
but each pixel in the rectangle needs its own bit,so programming
screen-sized Images isn't [Link]'ll stick to an Image that
requires about 32x16 bits-an Image thats about 3x1cm.
You can make all sorts of images as you've seen looking at window
[Link] is an Intuition functionthat draws an Image:It is
the DrawImage function (offset -114) and it needs 4 parameters:
DrawImage =-114
...
draw: ;*draw image
move.l intbase,a6 ;intuition base address in A6
move.l windowhd,a0 ;pointer to window structure
move.l 50(a0),a0 ;now,rastport address in A0
jsr drawimage(a6) ;draw image
rts
The first two entries are words which specify the distance in the
X- and Y-direction from the co-ordinates that were given to tell
where the image should be [Link]'ll just put two zeros here:
image:
dc.w 0,0 ;X- and Y-position
Next come two words which specify the width and height of the
image in [Link] draw a 32x13 point [Link]:
The next word in the list specifies the number of planes in the
[Link] its a simple image that only uses two colours,just
enter a [Link] more colours,you'll need a correspondingly bigger
[Link] more colurs are worked with,the bit pattern of the
image must have more [Link] just have one bit plane:
Next comes a long word that points to the data of the image:
dc.b 1 ;background:white
image:
dc.w 0,0 ;X- and Y-positions
dc.w 32,13 ;width and height of image
dc.w 1 ;one bitplane:2^1=2 colours
dc.l imgdata ;pointer to image data
dc.b 2 ;drawing red:plane 1
dc.b 1 ;background:white
dc.l 0 ;no more images
Now lets produce the image [Link] image row uses a word,long
word,or several of these represent the [Link] set points of
the image correspond to the set [Link] is repeated as often as
the height of the image [Link] data on each line must begin
on a word border,on a even address.
For the example,its easy to decide on the data,since you're going
32 points across-that corresponds to exacty one long [Link]
easiest to program the image using the binary representation of
the data.
Lets use,as an example,an image that represents a switch in "OFF"
[Link] form is chosen for a good reason,so you should type it
[Link] the chapter on gadgets thats coming up,we'll show you how to
turn the switch [Link] is the example data for the switch image:
How do you like the image on the screen?You'll run into this
switch again when we talk about putting the switch in the "ON"
state when discussing [Link] need to look at other methods of
drawing in the window first,though.
[Link].
------------
A border is a collection of lines that are [Link] can be
of any length or at any [Link] lets you draw borders to
do things like put frames around windows and [Link] are used
to put borders around pictures or text,especially for use with
string [Link]'ll talk about that later,though.
Its easy to draw [Link] use the Intuition function
DrawBorder (offset -108) which needs four parameters:
DrawBorder =-108
...
borderdraw: ;* draw several lines
move.l inbase,a6 ;intuition base address in A6
move.l windowhd,a0 ;pointer to window structure
move.l 50(a0),a0 ;now rastport address in A0
jsr drawborder(a6) ;draw lines
rts
Now lets look at the border [Link] list needs the eight
following parameters:
First,you need two words for the vertical and horizontal distance
from the co-ordinates given in the function [Link] avoid losing
sight of some of the many distance entries,put two zeros here:
border:
dc.w 0 ;horizontal distance
dc.w 0 ;vertical distance
Next come two bytes that determine the [Link] a red frame:
As you can see,the background colour isn't [Link] have two modes
to choose between for drawing the [Link] following mode
determines the mode that is [Link] it is zero,each line is drawn
in the colour chosen,no matter what was done [Link] is the
JAM1 [Link] other mode is the XOR mode which ignores both colour
[Link] this mode,all the points that lie under the line have
their colour value [Link] a result,a white point becomes
black,and a blue one becomes [Link] is mode [Link] use the
JAM1 mode for the example:
The next entry specifies how many co-ordinate pairs there are in
the [Link] this word must be on an even address,you need to
use the "align"peudo-op [Link] enter the number of pairs.
Remember that you need three points to draw two lines:beginning,
corner and end [Link] draw a rectangular frame,you need five
pairs:
The border structures final entry is a long word that can point to
another border [Link] you don't have any more structures to
be pointed to,just enter a zero [Link] pointer is useful for
connecting two independant border structures-for example,to
produce a two coloured frame that really stands [Link] don't need
this pointer in the example,though:
border:
dc.w 0 ;horizontal distance
dc.w 0 ;vertical distance
dc.b 3 ;red frame
dc.b 0 ;background (unused)
dc.b 0 ;mode:JAM1 (2=XOR)
dc.b 5 ;5 X,Y pairs used together
dc.l coord ;pointer to cordinate table
dc.l 0 ;no more structures
coord: ;coordinates for rectangle frame
dc.w -2,-2
dc.w 80,-2
dc.w 80,9
dc.w -2,9
dc.w -2,-2
Once you've typed this in,you can try the whole thing [Link] the
following lines before the "loop"label in the program:
[Link].
------------
We already talked a bit about gadgets when you looked at screen
[Link] at system gadgets like the window close
symbol,you can activate by clicking and causes a program function
to be executed.
You can make your own gadgets as [Link] allows you a lot
of interesting possibilities.
Proportional gadgets let you choose an analog value with the mouse
You can move these around with the mouse.
[Link] Gadgets.
----------------------
Lets start with the simplest type,the boolean [Link] example of
this sort of gadget is the close symbol of the [Link] only
status it differenciates between are clicked and not [Link]
develop a gadget of this type step by [Link] flags and other
parameters are similar for the other gadgets.
Each gadget needs a structure containing fifteen [Link] is
a pointer to this structure in window,screen or requester that the
gadget is to appear [Link] always a long word available for
this [Link] to this point,you've just put a zero [Link]
there is an address of a gadget structure there,the gadget or
gadgets are displayed when the window is opened.
gadget1:
dc.l 0 ;no more gadgets
The next two words determine the position of the gadget in the
[Link] are several ways to determine the [Link] flags
to access the various [Link] start with a gadget that
stays in one spot:
dc.w 40 ;X and
dc.w 50 ;Y position of the gadget
The next two words determine the size of the gadgets Hit [Link]
box isn't the visible size of the gadget (that depends on the
image data).It is the size of the rectangle that Intuition should
[Link] the mouse pointer is moved into this box and the left
button pressed,the gadget is [Link] on parts of the
gadget that are outside this box have no effect!
Next comes the word whose bits determine the properties of the
[Link] 0 and 1 determine what should happen when this objects
hit box is clicked [Link] meanings of the various values of these
bits go as follows:
Bit 0 1 Value Name Meaning
------------------------------------------------------------------
0 0 0 GADGHCOMP The gadget inverted
0 1 1 GADGHBOX The gadget framed
1 0 2 GADGHIMAGE Another image appears
1 1 3 GADGHNONE No reaction
dc.w 4 ;flags:image,invert
Next comes a word whose bits are used as [Link] flag is called
the Activation [Link] determines the functions of the [Link]
bits,their values and meanings follow:
The next word of the gadget structure determines the gadget type.
Heres the meaning of the individual bits:
System gadgets:
4 $10 SIZING Size changing gadget
5 $20 WDRAGGING Moving gadget for window
4+5 $30 SDRAGGING Same for screen
6 $40 WUPFRONT Gadget to move window forward
6+4 $50 SUPFRONT Gadget to move screen forward
6+5 $60 WDOWNBACK Move window back
6+5+4 $70 SDOWNBACK Move screen back
7 $80 CLOSE Window close gadget
Type definitions:
12 $1000 REQGADGET Requester gadget
13 $2000 GZZGADGET Border gadget in GIMMEZEROZERO
window
14 $4000 SCRGADGET Screen gadget when set
15 $8000 SYSGADGET System gadget when set
You want to use a simple boolean gadget for your example,so enter:
The next pointer is only used if the GADGHIMAGE flag in the flag
word of the structure is [Link] is a pointer to another
structure that should be put on the screen when the object is
[Link] a border structure is used for the gadget represent-
ation,this must be a border structure as [Link] won't use a
second image,so put a zero here:
dc.w 1 ;gadget ID
Finally there is a long word that doesn't have any function,so put
a zero here:
gadget1:
dc.l 0 ;no more gadgets
dc.w 40 ;X and
dc.w 50 ;Y position of gadget
dc.w 32 ;width and
dc.w 13 ;height of hit box
dc.w 4 ;flags:image,invert
dc.w $102 ;activation flags
dc.w 1 ;gadget type:boolean
dc.l image ;gadget image
dc.l 0 ;no new gadget displayed
dc.l ggtext ;gadget text
dc.l 0 ;no exclude
dc.l 0 ;no SpecialInfo
dc.w 1 ;gadget ID
dc.l 0 ;user data (ignore)
You've already prepared a structure that you can use for this
[Link] you need the text that appears under the gadget.
Since the gadget looks like a switch,label it "switch".The text
structure looks like this:
ggtext:
dc.b 1,0 ;colours
dc.b 1 ;mode
align
dc.w -8,14 ;X and Y position
dc.l 0 ;standard font
dc.l swtext ;pointer to text
dc.l 0 ;no more text
swtext:
dc.b "switch",0
align
image2:
dc.w 0,0 ;no offset
dc.w 32,13 ;32x13 pixels
dc.w 1 ;mode 1
dc.l imgdata2 ;pointer to the data
dc.b 2,1 ;same colours as before
dc.l 0 ;nothing else
[Link] Gadgets.
---------------------
Lets pretend you want a program to load data from the [Link] get
the user to enter the filename,you need to output text telling the
user to enter the [Link] you need to call an input routine to
evaluate the keyboard input.
Its easier and more elegant to use a String [Link] function
allows for easy input and/or editingof short [Link] have the
option of having the text [Link] Undo function can be used by
pressing the right <Amiga> key and a "Q",and the old contents of
the gadget,the old text are restored.
You can also vary the size of the text and the input [Link] the
text is longer than the input field is wide,the text is moved back
and forth through the visible area when you move the cursor keys
or the normal input to the border.
You can also restrict input to just [Link] makes it posible
to accept numeric [Link] even converts the digit string
into a binary [Link] saves the machine language programmer
some work.A specialized String gadget of this sort is called a
Integer gadget.
The structure is similar to the Boolean gadgets [Link]
are only two major differences:
The type word of the structure must be a four to declare that this
is a String gadget (STRGADGET).
<Backspace>
Deletes the character to the left of the cursor.
<Return>
Ends text input.
<Amiga>right+"Q"
This is the Undo [Link] replaces the text with the
original contents.
strinfo:
dc.l strpuffer ;pointer to text buffer
Next comes the pointer to the Undo [Link] pointer and this
buffer are only needed if you want the Undo [Link] you do,you
must have a buffer that is at least as big as your text buffer.
Every time the string gadget function is called,the text buffers
contents are copied into this [Link] get the old contents back,
just press the right <Amiga>key and the "Q"[Link] contents of the
Undo buffer are copied back to the text [Link] you use several
string gadgets in a program,you can use the same Undo buffer for
all of them,since only one string gadget is used at one time.
The next word contains the maximum number of characters that can
be [Link] you type one more than this number of characters,the
screen blinks,to show that you can't enter a longer input string.
The number of characters and the reserved space for the input
field don't have to agree,since text can be scrolled by typing.
strinfo:
dc.l strpuffer ;pointer to text buffer
dc.l undo ;pointer to undo buffer
dc.w 0 ;cursor position
dc.w 10 ;maximum # of characters
dc.w 0 ;output text from this character
dc.w 0 ;character position in undo buffer
dc.w 0 ;number of chars in text buffer
dc.w 0 ;number of chars visible in box
dc.w 0 ;horizontal box offset
dc.w 0 ;vertical box offset
dc.l 0 ;pointer to rastport
dc.l 0 ;long word with value of input
; ;(for integer gadgets)
dc.l 0 ;standard keyboard table
strpuffer:
dc.b "Hello!",0,0,0
undo:
dc.l 0,0,0,0
align
Once you've entered these lines,you can either alter the old
gadget structure or build a new [Link]'d recommend building
another gadget structure so that you can have the switch and use
it [Link] the first pointer in the old structure from zero
to "gadget1"and insert this new [Link] is an example
strucure for the string [Link] as the following entries:
[Link] Gadgets.
---------------------------
You've seen the advantages of slider devices over knobs that you
turn,maybe on a hifi,maybe on a toaster,but certainly someplace.
Its easier to tell the state the item is in with a slider,
especially if several such devices are next to each other(for
example graphic equalizers).You can represent sliders on the
Amigas screen and work with them with the [Link] offers a nice
way to represent information graphically in your programs.
You can do this with [Link] Proportional gadgets,you can
put a symbol in a frame and move horzontally and/or [Link]
size of the frame and the slider can be variable size,so that the
frame size is relative to the screen size so when the window
changes size,it will [Link] slider can be set up so that its
size in the grows or shrinks.
These are best seen via example and experimentation.(The
posibilities mentioned do not form a complete list by any stretch
of the imagination.)You want to set up a simple Proportional
gadget that can be moved horizontally.
You need a gadget structure that as the same form as [Link]
show the differences,heres a complete example structure for your
[Link] can connect this gadget to the other one,by changing
the first long word in the last structure to "dc.l gadget2".
You see two special [Link] an image structure for the mover
and put a pointer to another structure in the spot for the Special
Info pointer.
First,lets look at the "mover"structure,the sliders image
[Link] an example of this structure:
The structure starts with a flag word that contains the following
bits:
You can set the first four bits to get the representation that you
[Link] 8 is set by Intuition when the mover is clicked with the
mouse pointer.
Bit 0,AUTOKNOB,allos for the simplest sort of Proportional gadget.
If this bit is set,no move data are used for the mover image.
Instead,a white mover is generated that is adjusted to the size of
the box and the values to be [Link] you use this slider
to represent the displayed lines in a long text of a program,the
displayed lines are a percentage of the total [Link]
relationship between the total number of lines and the lines shown
is represented by an AUTOKNOB as the relationship between the
frame and the [Link] bigger the percentage,the bigger the
slider [Link] don't want to work with this though,even though it
is simple and interesting,because a simple white button isn't
particularly [Link] you experiment with it,make sure that
the pointer to the image data points to a four word long buffer
that Intuition can use to store [Link] buffer is of the
following form:
buffer:
dc.w 0 ;X position of the slider in the box
dc.w 0 ;Y position in the box
dc.w 0 ;width of slider
dc.w 0 ;height of slider
propinfo:
dc.w 2 ;flags:FREEHORIZ
Next come two words which determine the size of the AUTOKNOB or
the step size of the slider(this determines how far the slider
moves when you click in the box next to the slider).These words
are called HorizBody (horizontal movement) and VertBody (vertical
movement).
prpoinfo:
dc.w 2 ;flags:FREEHORIZ
dc.w 0,0 ;X and Y position of slider
dc.w $ffff/16 ;horizontal step size:1/16
dc.w 0 ;no vertical movement
dc.w 0 ;box width
dc.w 0 ;box height
dc.w 0 ;absolute step size horizontal
dc.w 0 ;and vertical
dc.w 0 ;left border of box
dc.w 0 ;upper border of box
Once you've typed this in,you can start the program and try it
out.
You can also try vertical movement by setting the flag word equal
to six,the vertical step size to $FFFF/10,and the height of the
gadget to 80,for the [Link] try out the AUTOKNOBs,change the
flag value to seven.
[Link] Program.
---------------------
Here is a complete example program using what you have learned in
this chapter:
;7_Intuition.asm
;** Demo-Program for working with Intuition **
movescreen =-162
openscreen =-198
closescreen =-66
openwindow =-204
closewindow =-72
autorequest =-348
setmenustrip =-264
clearmenustrip=-54
printitext =-216
drawimage =-144
drawborder =-108
displaybeep =-96
closelibrary =-414
openlib =-408
execbase = 4
getmsg =-372
joy2 =$dff0c
fire =$bfe001
run:
bsr openint
bsr scropen
bsr windopen
bsr setmenu
bsr print
lea border,a1
move #22,d0
move #30,d1
bsr borderdraw
bsr draw
bsr request
loop:
move.l execbase,a6
move.l windowhd,a0
move.l 86(a0),a0 ;user port
jsr getmsg(a6)
tst.l d0
beq loop ;no event
move.l d0,a0
move.l $16(a0),msg ;event:LO=item,HI=Event
move.l msg,d6 ;to test
move.l d6,d7
lsr #8,d7
lsr #3,d7 ;sub menu point in D7
clr.l d5
roxr #1,d6
roxl #1,d5 ;menu number in D5
and.l #$7f,d6
cmp #$7f,d6 ;no menu point?
beq loop ;no:continue
lsr #4,d6 ;menu point in D6
cmp #1,d6 ;point 2?
bne no1
move,l intbase,a6
move.l screenhd,a0
jsr displaybeep(a6)
no1:
cmp #0,d6
bne loop
ende:
bsr clearmenu
bsr windclose
bsr scrclose
bsr closeint
rts
openint:
move.l execbase,a6
lea intname,a1
jsr openlib(a6)
move.l d0,intbase
rts
closeint:
move.l execbase,a6
move.l intbase,a1
jsr closelibrary(a6)
rts
scropen:
move.l inbase,a6
lea screen_defs,a0
jsr openscreen(a6)
move.l d0,screenhd
scrclose:
move.l inbase,a6
move.l screenhd,a0
jsr closescreen(a6)
rts
scrmove:
move.l intbase,a6
move,l screenhd,a0
jsr movescreen(a6)
rts
windopen:
move.l intbase,a6
lea windowdef,a0
jsr openwindow(a6)
move.l d0,windowhd
rts
windclose:
move.l intbase,a6
move.l windowhd,a0
jsr closewindow(a6)
rts
request:
move.l windowhd,a0
lea btext,a1
lea ltext,a2
lea rtext,a3
move.l #0,d0
move.l #0,d1
move.l #180,d2
move.l #80,d3
move.l intbase,a6
jsr autorequest(a6)
rts
setmenu:
lea mentab,a0 ;pointer to text pointer in A0
lea menu,a1 ;pointer to menu field in A1
move #10,d1 ;menu position = 10
menuloop:
clr.l d2 ;menu point-Y=0
move.l a1,a2 ;save pointer
tst.l (a0)
beq setmenu1 ;end
clr.l (a1)+
move d1,(a1)+
add.l #70,d1
move.l #50,(a1)+
move.l #$a0001,(a1)+
move.l (a0)+,(a1)+ ;menu title
lea 12(a1),a3
move.l a3,(a1)+ ;menu point
clr.l (a1)+
clr.l (a1)+
itemloop:
tst.l (a0) ;last one?
beq menuend ;yes
lea 54(a1),a3
move.l a3,(a1)+ ;pointer to next point
move.l d2,(a1)+ ;X/Y
add #10,d2
move.l #$5a000a,(a1)+ ;width/height
move #$52,(a1)+
clr.l (a1)+
lea 16(a1),a3
move.l a3,(a1)+ ;text structor-pointer
clr.l (a1)+
clr.l (a1)+
clr.l (a1)+
menuend:
clr.l -54(a1)
tst.l (a0)+
tst.l (a0) ;still in menu?
beq setmenu1 ;no:ready
move.l a1,(a2) ;pointer to next menu
bra menuloop ;and continue
setmenu1:
move.l intbase,a6
move.l windowhd,a0
lea menu,a1
jsr setmenustrip(a6)
rts
clearmenu:
move.l intbase,a6
move.l windowhd,a0
jsr clearmenustrip(a6)
rts
print:
move.l intbase,a6
move.l windowhd,a0
move.l 50(a0),a0
lea ggtext,a1
move.l #30,d0 ;X
move.l #16,d1 ;Y
jsr printitext(a6)
rts
draw:
move.l intbase,a6
move.l windowhd,a0
move.l 50(a0),a0
lea image,a1
move.l #200,d0
move.l #100,d1
jsr drawimage(a6)
rts
borderdraw:
move.l intbase,a6
move.l windowhd,a0
move.l 50(a0),a0
jsr drawborder(a6)
rts
screen_defs:
dc.w 0,0
dc.w 640,200
dc.w 4
dc.b 0
dc.b 1
dc.w $800
dc.w 15
dc.l 0
dc.l tite1
dc.l 0
dc.l 0
windowdef:
dc.w 10,20
dc.w 300,150
dc.b 0,1
dc.l $300
dc.l $100f
dc.l gadget
dc.l 0
dc.l windname
screenhd:
dc.l 0
dc.l 0
dc.w 200,40,600,200
dc.w $f
btext:
dc.b 3,3
dc.b 0
align
dc.w 10,10
dc.l 0
dc.l bodytxt
dc.l 0
bodytxt:dc.b "Requester-Text",0
align
ltext:
dc.b 3,1
dc.b 0
align dc.w 5,3
dc.l 0
dc.l lefttext
dc.l 0
rtext:
dc.b 0,1
dc.b 0
align dc.w 5,3
dc.l 0
dc.l righttext
dc.l 0
intbase:dc.l 0
intname:dc.b "[Link]",0
align msg:dc.l 0
mentab:
dc.l menu1
dc.l mp11,np12,mp13,mp14,mp15,mp16,mp17,mp18,mp19,0
dc.l menu2
dc.l mp21,mp22,mp23,0
dc.l menu3
dc.l mp31,mp32,0
dc.l menu4,mp41,0
dc.l 0
gadget:
dc.l gadget1
dc.w 20,80,80,10
dc.w 0
dc.w $2 ;activation,$802 for longint
dc.w 4
dc.l border
dc.l 0
dc.l 0
dc.l 0
dc.l strinfo
dc.w 2
dc.l 0
border:
dc.w 0,0
dc.b 1,0,0
dc.d 5 ;XY-pair
dc.l koord
dc.l 0
koord:
dc.w -2,-2,80,-2,80,9,-2,9,-2,-2
strinfo:
dc.l strpuffer
dc.l undo
dc.w 0 ;cursor position
dc.w 10 ;[Link]
dc.w 0
dc.w 0,0,0,0,0
dc.l 0,0,0
strpuffer:
dc.b "Hello!",0,0,0
gadget1:
dc.l gadget2 ;more gadget
dc.w 40,50,32,13
dc.w $6 ;flags:invert
dc.w $103 ;activate
dc.w 1 ;gadget type
dc.l image ;gadget image
dc.l image2 ;select gadget
dc.l ggtext ;gadget text
dc.l 0 ;no exclude
dc.l 0 ;special info
dc.w 1 ;ID
dc.l 0 ;user data
ggtext:
dc.b 1,0,1
align
dc.w -8,14
dc.l 0
dc.l swtext
dc,l 0
swtext:
dc.b "Switch",0
align
image:
dc.w 0,0
dc.w 32,13
dc.w 1
dc.l imgdata
dc.b 2,1
dc.l 0
image2:
dc.w 0,0
dc.w 32,13
dc.w 1
dc.l imgdata2
dc.b 2,1
dc.l 0
imgdata:
dc.l 0
dc.l %00000000011100000000000000000000
dc.l %00000000111110000011101001000000
dc.l %00000000111110000010101101000000
dc.l %00000000011110000010101011000000
dc.l %00000000000111000011101001000000
dc.l %00000000000011100000000000000000
dc.l %00000000000001110000000000000000
dc.l %00000000000111111111100000000000
dc.l %00000000001111111111110000000000
dc.l %00000000001111111111110000000000
dc.l %00000000000110000001100000000000
dc.l 0
imgdata2:
dc.l 0
dc.l %00000000000000000000111000000000
dc.l %00011101110111000001111100000000
dc.l %00010101000100000001111100000000
dc.l %00010101100110000001111000000000
dc.l %00011101000100000011100000000000
dc.l %00000000000000000111000000000000
dc.l %00000000000000001110000000000000
dc.l %00000000000111111111100000000000
dc.l %00000000001111111111110000000000
dc.l %00000000001111111111110000000000
dc.l %00000000000110000001100000000000
dc.l 0
gadget2:
dc.l 0
dc.w 150,30,100,50
dc.w 5
dc.w 2
dc.w 3 ;[Link]
dc.l mover ;border
dc.l 0,0,0
dc.l specinfo
dc.w 3
dc.l 0
specinfo:
dc.w 6 ;flags:free horiz
dc.w 0,0
dc.w $ffff/10,$ffff/5
dc.w 0,0,0,0,0,0
mover:
dc.w 0,0,16,7
dc.w 1
dc.l moverdata
dc.b 1,0
dc.l 0
moverdata:
dc.w %0111111111111110
dc.w %0101111111111010
dc.w %0101011111101010
dc.w %0101010110101010
dc.w %0101011111101010
dc.w %0101111111111010
dc.w %0111111111111110
menu:blk.w 500
end
Chapter 8.
----------
[Link] Programming.
-----------------------
You've learned a lot about machine language programming on the
[Link] you need yet are a few routines that can be used as
programming [Link]'ll work on that right [Link]'ll be easy to
use in your own [Link] sky's the limit now!
[Link] Mode.
--------------------
As mentioned in the chapter on the MC68000 processor,there are two
operating modes:the User and the Supervisor [Link] is often
necessary to move between the two [Link],this isn't a
simple process.
The reason you want to do this,is that in User mode,you can't
access the Status [Link] you write to one of them,an
Exception is executed which crashes the program.
userstate =-156
...
move.l execbase,a6 ;exec base address in A6
move.l savesp,d0 ;put old sp in D0
jsr userstate(a6) ;return to user mode
Now you are back in the user [Link] user stack point(USP)is the
same as [Link] can write functions that need to be run from
the supervisor mode as [Link] you call superstate,save
the return value,execute the desired function,call userstate,and
end with a RTS [Link] the USP was changed,the RTS command
would'nt work right,and the computor would jump who knows where
and perhaps [Link] it works though.
Now comes the question:how does the operating system get the
supervisor mode?Thats not too difficult;it goes like this:
[Link] Programming.
--------------------------
The exceptions described in the processor chapter offer you a lot
of oppertunities to control the Amiga's [Link] can use them
to specify how errors should be handled and even list a crash
program.
Lets write your own TRAP routine to demonstrate the use of the
TRAP [Link]'ll need three program sections:
Now you need to write the trap0 [Link] use the example from
the hardware chapter that produced a beep.
Lets write this routine using as little effort as [Link]
the RTS to a RTE at the end,erase the line in which the loop
counter D0 was loaded for the tone production,and change the loop
so that it works with long [Link] you can load the register
with an arbitrary value and have the TRAP #0 followed by a peep of
arbitrary duration.
loop:
subq.l #1,d0 ;counter -1
bne loop ;count dwn to zero
still:
move #1,ctlw ;turn on tone
rte ;exception end
test:
move.l #$2ffff,d0 ;pass tone length in D0
trap #0 ;carry out exception:peep
rts
[Link]
-$001E -30 InitCLPool (cLPool,size) (A0,D0)
-$0024 -36 AllocCList (cLPool) (A1)
-$002A -42 FreeCList (cList) (A0)
-$0030 -48 FlushCList (cList) (A0)
-$0036 -54 SizeCList (cList) (A0)
-$003C -60 PutCLChar (cList,byte) (A0,D0)
-$0042 -66 GetCLChar (cList) (A0)
-$0048 -72 UnGetCLChar (cList,byte) (A0,D0)
-$004E -78 UpPutCLChar (cList) (A0)
-$0054 -84 PutCLWord (cList,word) (A0,D0)
-$005A -90 GetCLWord (cList) (A0)
-$0060 -96 UnGetCLWord (cList,word) (A0,D0)
-$0066 -102 UnPutCLWord (cList) (A0)
-$006C -108 PutCLBuf (cList,buffer,length) (A0,A1,D1)
-$0072 -114 GetCLBuf (cList,buffer,maxLength) (A0,A1,D1)
-$0078 -120 MarkCList (cList,offset) (A0,D0)
-$007E -126 IncrCLMark (cList) (A0)
-$0084 -132 PeekCLMark (cList) (A0)
-$008A -138 SplitCList (cList) (A0)
-$0090 -144 CopyCList (cList) (A0)
-$0096 -150 SubCList (cList,index,length) (A0,D0.D1)
-$009C -156 ConcatCList (sourceCList,destCList) (A0,A1)
[Link]
-$002A -42 CDInputHandler (events,device) (A0,A1)
-$0030 -48 RawKeyConvert (events,buffer,length,keyMap)
(A0,A1,D1,A2)
[Link]
-$001E -30 OpenDiskFont (textAttr) (A0)
-$0024 -36 AvailFonts (buffer,bufBytes,flags) (A0,D0,D1)
[Link]
-$001e -30 Open (name,access mode)(d1,d2)
-$0024 -36 Close (file)(d1)
-$002a -42 Read (file,buffer,length)(d1,d2,d3)
-$0030 -48 Write (file,buffer,length)(d1,d2,d3)
-$0036 -54 Input()
-$003c -60 Output()
-$0042 -66 Seek(file,position,offset)(d1,d2,d3)
-$0048 -72 DeleteFile (name)(d1)
-$004e -78 Rename(oldname,newname)(d1,d2)
-$0054 -84 Lock(name,type)(d1,d2)
-$005a -90 UnLock(lock)(d1)
-$0060 -96 DupLock(lock)(d1)
-$0066 -102 Examine(lock,fileinfoblock)(d1,d2)
-$006c -108 ExNext(lock,fileinfoblock)(d1,d2)
-$0072 -114 Info(lock,parameterblock)(d1,d2)
-$0078 -120 CreateDir(name)(d1)
-$007e -126 CurrentDir(lock)(d1)
-$0084 -132 IoErr()
-$008a -138 CreateProc(name,pri,seglist,stacksize)(d1,d2,d3,d4)
-$0090 -144 Exit(returncode)(d1)
-$0096 -150 LoadSeg(filename)(d1)
-$009c -156 UnLoadSeg(segment)(d1)
-$00a2 -162 Getpacket(wait)(d1)
-$00a8 -168 Queuepacket(packet)(d1)
-$00ae -174 DeviceProc(name)(d1)
-$00be -180 SetComment(name,comment)(d1,d2)
-$ooba -186 SetProtection(name,mask)(d1,d2)
-$00c0 -192 DateStamp(date)(d1)
-$00c6 -198 Delay(timeout)(d1)
-$00cc -204 WaitForChar(file,timeout)(d1,d2)
-$00d2 -210 ParentDir(lock)(d1)
-$00d8 -216 IsInteractive(file)(d1)
-$00de -222 Execute(string,file,file)(d1,d2,d3)
[Link]
-$001e -30 Supervisor()
-$0024 -36 ExitIntr()
-$002a -42 Schedule()
-$0030 -48 Reschedule()
-$0036 -54 Switch()
-$003c -60 Dispatch()
-$0042 -66 Exception()
-$0048 -72 InitCode(startclass,version)(d0,d1)
-$004e -78 InitStruct(inittable,memory,size)(a1,a2,d0)
-$0054 -84 MakeLibrary(funcinit,structinit,libinit,datasize,
codesize)(a0,a1,a2,d0,d1)
-$005a -90 MakeFunctions(target,functionarray,funcdispbase)
(a0,a1,a2)
-$0060 -96 FindResident(name)(a1)
-$0066 -102 InitResident(resident,seglist)(a1,d1)
-$006c -108 Alert(alertnum,parameters)(d7,a5)
-$0072 -114 Debug()
-$0078 -120 Disable()
-$007e -126 Enable()
-$0084 -132 Forbid()
-$008a -138 Permit()
-$0090 -144 SetSR(newsr,mask)(d0,d1)
-$0096 -150 SuperState()
-$009c -156 UserState(sysstack)(d0)
-$00a2 -162 setIntVector(intnumber,interrupt)(d0,d1)
-$00a8 -168 AddIntServer(intnumber,interrupt)(d0,d1)
-$00ae -174 RemIntServer(intnumber,interrupt)(d0,d1)
-$00b4 -180 Cause(interrup)(a1)
-$00ba -186 Allocate(freelist,bytesize)(a0,d0)
-$00c0 -192 Deallocate(freelist,memoryblock,bytesize)(a0,a1,d0)
-$00c6 -198 AllocMem(bytesize,requirements)(d0,d1)
-$00cc -204 AlloAbs(bytesize,location)(d0,a1)
-$00d2 -210 FreeMem(memoryblock,bytesize)(a1,d0)
-$00d8 -216 AvailMem(requirements)(d1)
-$00de -222 AllocEntry(entry)(a0)
-$00e4 -228 FreeEntry(entry)(a0)
-$00ea -234 Insert(list,node,pred)(a0,a1,a2)
-$00f0 -240 AddHead(list,node)(a0,a1)
-$00f6 -246 AddTail(list,node)(a0,a1)
-$00fc -252 Remove(node)(a1)
-$0102 -258 RemHead(list)(a0)
-$0108 -264 RemTail(list)(a0)
-$010e -270 Enqueue(list,node)(a0,a1)
-$0114 -276 FindName(list,name)(a0,a1)
-$011a -282 AddTask(task,initpc,finalpc)(a1,a2,a3)
-$0120 -288 RemTask(task)(a1)
-$0126 -294 FindTask(name)(a1)
-$012c -300 SetTaskPri(task,prority)(a1,d0)
-$0132 -306 SetSignal(newsignals,signelset)(d0,d1)
-$0138 -312 SetExcept(newsignals,signalset)(d0,d1)
-$013e -318 Wait(signalset)(d0)
-$0144 -324 Signal(task,signalset)(a1,d0)
-$014a -330 AllocSignal(signalnum)(d0)
-$0150 -336 FreeSignal(signalnum)(d0)
-$0156 -342 AllocTrap(trapnum)(d0)
-$015c -348 FreeTrap(trapnum)(d0)
-$0162 -354 AddPort(port)(a1)
-$0168 -360 RemPort(port)(a1)
-$016e -366 PutMsg(port,message)(a0,a1)
-$0174 -372 GetMsg(port)(a0)
-$017a -378 ReplyMsg(message)(a1)
-$0180 -384 WaitPort(port)(a0)
-$0186 -390 FindPort(name)(a1)
-$018c -396 AddLibrary(library)(a1)
-$0192 -402 RemLibrary(library)(a1)
-$0198 -408 OldOpenLibrary(libname)(a1)
-$019e -414 CloseLibrary(library)(a1)
-$01a4 -420 Setfunction(library,funcoffset,funcentry)(a1,a0,d0)
-$01aa -426 SumLibrary(library)(a1)
-$01b0 -432 AddDevice(device)(a1)
-$01b6 -438 RemDevice(device)(a1)
-$01bc -444 OpenDevice(devname,unit,iorequest,flags)(a0,d0,a1
,d1)
-$01c2 -450 CloseDevice(iorequest)(a1)
-$01c8 -456 DoIO(iorequest)(a1)
-$01ce -462 SendIO(iorequest)(a1)
-$01d4 -468 CheckIO(iorequest)(a1)
-$01da -474 WaitIO(iorequest)(a1)
-$01e0 -480 AbortIO(iorequest)(a1)
-$01e6 -486 AddResource(resource)(a1)
-$01ec -492 RemResource(resource)(a1)
-$01f2 -498 OpenResource(resname,version)(a1,d0)
-$01f8 -504 RawIOInit()
-$01fe -510 RawMayGetChar()
-$0204 -516 RawPutChar(char)(d0)
-$020a -522 RawDoFmt()(a0,a1,a2,a3)
-$0210 -528 GetCC()
-$0216 -534 TypeOfMem(address)(a1)
-$021c -540 Procedure(semaport,bidmsg)(a0,a1)
-$0222 -546 Vacate(semaport)(a0)
-$0228 -552 OpenLibrary(libname,version)(a1,d0)
[Link]
-$001e -30 BltBitMap(scrbitmap,scrx,scry,destbitmap,destx,
desty,sizex,sizey,minterm,mask,tempa)
(a0,d0,d1,a1,d2,d3,d4,d5,d6,d7,a2)
-$0024 -36 BltTemplate(source,scrx,scrmod,destrastport,destx,
desty,sixex,sizey)(a0,d0,d1,a1,d2,d3,d4,d5)
-$002a -42 ClearEOL(rastport)(a1)
-$0030 -48 ClearScreen(rastport)(a1)
-$0036 -54 TextLength(rastport,string,count)(a1,a0,d0)
-$003c -60 Text(rastport,string,count)(a1,a0,d0)
-$0042 -66 SetFont(rastportid,textfont)(a1,a0)
-$0048 -72 OpenFont(textattr)(a0)
-$004e -78 CloseFont(textfont)(a1)
-$0054 -84 AskSoftStyle(rastport)(a1)
-$005a -90 SetSoftStyle(rastport,style,enable)(a1,d0,d1)
-$0060 -96 AddBob(bob,rastport)(a0,a1)
-$0066 -102 AddVSprite(vsprite,rastport)(a0,a1)
-$006c -108 DoCollision(rastport)(a1)
-$0072 -114 DrawGList(rastport,viewport)(a1,a0)
-$0078 -120 InitGels(dummyhead,dummytail,gelsinfo)(a0,a1,a2)
-$007e -126 InitMasks(vsprite)(a0)
-$0084 -132 RemIBob(bob,rastport,viewport)(a0,a1,a2)
-$008a -138 RemVSprite(vsprite)(a0)
-$0090 -144 SetCollision(type,routine,gelsinfo)(d0,a0,a1)
-$0096 -150 SortGList(rastport)(a1)
-$009c -156 AddAnimObj(obj,animationkey,rastport)(a0,a1,a2)
-$00a2 -162 Animate(animationkey,rastport)(a0,a1)
-$00a8 -168 etGBuffers(animationobj,rastport,doublebuffer)(a0,
a1,d0)
-$00ae -174 InitGMasks(animationobj)(a0)
-$00b4 -180 GelsFuncE()
-$00ba -186 GelsFuncF()
-$00c0 -192 LoadRGB4(viewport,colurs,count)(a0,a1,d0)
-$00c6 -198 InitRastPort(rastport)(a1)
-$00cc -204 InitVPort(viewport)(a0)
-$00d2 -210 MrgCop(view)(a1)
-$00D8 -216 MakeVPort (view,viewPort) (A0,A1)
-$00DE -222 LoadView (view) (A1)
-$00E4 -228 WaitBlit ()
-$00EA -234 SetRast (rastPort,color) (A1,D0)
-$00F0 -240 Move (rastPort,x,y) (A1,D0,D1)
-$00F6 -246 Draw (rastPort,x,y) (A1,D0,D1)
-$00FC -252 AreaMove (rastPort,x,y) (A1,D0,D1)
-$0102 -258 AreaDraw (rastPort,x,y) (A1,D0,D1)
-$0108 -264 AreaEnd (rastPort) (A1)
-$010E -270 WaitTOF ()
-$0114 -276 QBlit (blit) (A1)
-$011A -282 InitArea (areaInfo,vectorTable,vectorTableSize)
(A0,A1,D0)
-$0120 -288 SetRGB4 (viewPort,index,r,g,b) (A0,D0,D1,D2,D3)
-$0126 -294 QBSBlit (blit) (A1)
-$012C -300 BltClear (memory,size,flags) (A1,D0,D1)
-$0132 -306 RectFill (rastPort,xl,yl,xu,yu)
(A1,D0,D1,D2,D3)
-$0138 -312 BltPattern (rastPort,ras,xl,yl,maxX,maxY,
fillBytes) (A1,A0,D0,D1,D2,D3,D4)
-$013E -318 ReadPixel (rastPort,x,y) (A1,D0,D1)
-$0144 -324 WritePixel (rastPort,x,y) (A1,D0,D1)
-$014A -330 Flood (rastPort,mode,x,y) (A1,D2,D0,D1)
-$0150 -336 PolyDraw (rastPort,count,polyTable) (A1,D0,A0)
-$0156 -342 SetAPen (rastPort,pen) (A1,D0)
-$015C -348 SetBPen (rastPort,pen) (A1,D0)
-$0162 -354 SetDrMd (rastPort,drawMode) (A1,D0)
-$0168 -360 InitView (view) (A1)
-$016E -366 CBump (copperList) (A1)
-$0174 -372 CMove (copperList,destination,data) (A1,D0,D1)
-$017A -378 CWait (copperList,x,y) (A1,D0,D10
-$0180 -384 VBeamPos ()
-$0186 -390 InitBitMap (bitMap,depth,width,height)
(A0,D0,D1,D2)
-$018C -396 ScrollRaster (rastPort,dX,dY,minx,miny,maxx,
maxy) (A1,D0,D1,D2,D3,D4,D5)
-$0192 -402 WaitBOVP (viewPort) (A0)
-$0198 -408 GetSprite (simpleSprite,num) (A0,D0)
-$019E -414 FreeSprite (num) (D0)
-$01A4 -420 ChangeSprite (vp,simpleSprite,data) (A0,A1,A2)
-$01AA -426 MoveSprite (viewPort,simpleSprite,x,y)
(A0,A1,D0,D1)
-$01B0 -432 LockLayerRom (layer) (A5)
-$01B6 -438 UnlockLayerRom (layer) (A5)
-$01BC -444 SyncSBitMap (1) (A0)
-$01C2 -450 CopySBitMap (11,12) (A0,A1)
-$01C8 -456 OwnBlitter ()
-$01CE -462 DisownBlitter ()
-$01D4 -468 InitTmpRas (tmpras,buff,size) (A0,A1,D0)
-$01DA -474 AskFont (rastPort,textAttr) (A1,A0)
-$01E0 -480 AddFont (textFont) (A1)
-$01E6 -486 RemFont (textFont) (A1)
-$01EC -492 AllocRaster (width,height) (D0,D1)
-$01F2 -498 FreeRaster (planeptr,width,height) (A0,D0,D1)
-$01F8 -504 AndRectRegion (rgn,rect) (A0,A1)
-$01FE -510 OrRectRegion (rgn,rect) (A0,A1)
-$0204 -516 NewRegion ()
-$020A -522 ** reserved **
-$0210 -528 ClearRegion (rgn) (A0)
-$0216 -534 DisposeRegion (rgn) (A0)
-$021C -540 FreeVPortCopLists (viewPort) (A0)
-$0222 -546 FreeCopList (coplist) (A0)
-$0228 -552 ClipBlit (srcrp,srcX,srcY,destrp,destX,destY,
sizeX,sizeY,minterm) (A0,D0,D1,A1,D2,D3,D4,D5,D6)
-$022E -558 XorRectRegion (rgn,rect) (A0,A1)
-$0234 -564 FreeCprList (cprlist) (A0)
-$023A -570 GetColorMap (entries) (D0)
-$0240 -576 FreeColorMap (colormap) (A0)
-$0246 -582 GetRGB4 (colormap,entry) (A0,D0)
-$024C -588 ScrollVPort (vp) (A0)
-$0252 -594 UCopperListInit (copperlist,num) (A0,D0)
-$0258 -600 FreeGBuffers (animationObj,rastPort,
doubleBuffer) (A0,A1,D0)
-$025E -606 BltBitMapRastPort (srcbm,srcx,srcy,destrp,
destX,destY,sizeX,sizeY,minter)
(A0,D0,D1,A1,D2,D3,D4,D5,D6)
[Link]
-$001E -30 GetWBObject (name) (A0)
-$0024 -36 PutWBObject (name,object) (A0,A1)
-$002A -42 GetIcon (name,icon,freelist) (A0,A1,A2)
-$0030 -48 PutIcon (name,icon) (A0,A1)
-$0036 -54 FreeFreeList (freelist) (A0)
-$003C -60 FreeWBOject (WBOject) (A0)
-$0042 -66 AllocWBOject ()
-$0048 -72 AddFreeList (freelist,mem,size) (A0,A1,A2)
-$004E -78 GetDiskObject (name) (A0)
-$0054 -84 PutDiskObject (name,diskobj) (A0,A1)
-$005A -90 FreeDiskObj (diskobj) (A0)
-$0060 -96 FindToolType (toolTypeArray,typeName) (A0.A1)
-$0066 -102 MatchToolValue (typeString,value) (A0,A1)
-$006C -108 BumbRevision (newname,oldname) (A0,A1)
[Link]
-$001E -30 OpenIntuition ()
-$0024 -36 Intuition (ievent) (A0)
-$002A -42 AddGadget (AddPtr,Gadget,Position) (A0,A1,D0)
-$0030 -48 ClearDMRequest (Window) (A0)
-$0036 -54 ClearMenuStrip (Window) (A0)
-$003C -60 ClearPointer (Window) (A0)
-$0042 -66 CloseScreen (Screen) (A0)
-$0048 -72 CloseWindow (Window) (A0)
-$004E -78 CloseWorkbench ()
-$0054 -84 CurrentTime (Seconds,Micros) (A0,A1)
-$005A -90 DisplayAlert (AlertNumber,String,Height)
(D0,A0,D1)
-$0060 -96 DiplayBeep (Screen) (A0)
-$0066 -102 DoubleClick (sseconds,smicros,cseconds,
cmicros) (D0,D1,D2,D3)
-$006C -108 DrawBorder (Rport,Border,LeftOffset,TopOffset)
(A0,A1,D0,D1)
-$0072 -114 DrawImage (RPort,Image,LeftOffset,TopOffset)
(A0,A1,D0,D1)
-$0078 -120 EndRequest (requester,window) (A0,A1)
-$007E -126 GetDefPref (preferences,size) (A0,D0)
-$0084 -132 GetPrefs (preferences,size) (A0,D0)
-$008A -138 InitRequester (req) (A0)
-$0090 -144 ItemAddress (MenuStrip,MenuNumber) (A0,D0)
-$0096 -150 ModifyIDCMP (Window,Flags) (A0,D0)
-$009C -156 ModifyProp (Gadget,Ptr,Reg,Flags,HPos,VPos,
HBody,VBody) (A0,A1,A2,D0,D1,D2,D3,D4)
-$00A2 -162 MoveScreen (Screen,dx,dy) (A0,D0,D1)
-$00A8 -168 MoveWindow (Window,dx,dy) (A0,D0,D1)
-$00AE -174 OffGadget (Gadget,Ptr,Req) (A0,A1,A2)
-$00B4 -180 OffMenu (Window,MenuNumber) (A0,D0)
-$00BA -186 OnGadget (Gadget,Ptr,Req) (A0,A1,A2)
-$00C0 -192 OnMenu (Window,MenuNumber) (A0,D0)
-$00C6 -198 OpenScreen (OSArgs) (A0)
-$00CC -204 OpenWindow (OWArgs) (A0)
-$00D2 -210 OpenWorkBench ()
-$00D8 -216 PrintIText (rp,itext,left,top) (A0,A1,D0,D1)
-$00DE -222 RefreshGadgets (Gadgets,Ptr,Req) (A0,A1,A2)
-$00E4 -228 RemoveGadgets (RemPtr,Gadget) (A0,A1)
-$00EA -234 ReportMouse (Window,Boolean) (A0,D0)
-$00F0 -240 Request (Requester,Window) (A0,A1)
-$00F6 -246 ScreenToBack (Screen) (A0)
-$00FC -252 SCreenToFront (Screen) (A0)
-$0102 -258 SetDMRequest (Window,req) (A0,A1)
-$0108 -264 SetMenuStrip (Window,Menu) (A0,A1)
-$010E -270 SetPointer (Window,Pointer,Height,Width,
XOFFset, YOFFset) (A0,A1,D0,D1,D2,D3)
-$0114 -276 SetWindowTitles (Window,windowTitle,
screenTitle) (A0,A1,A2)
-$011A -282 ShowTitle (Screen,ShowIt) (A0,D0)
-$0120 -288 SizeWindow (Windowmdx,dy) (A0,D0,D1)
-$0126 -294 ViewAddress ()
-$012C -300 ViewPortAddress (Window) (A0)
-$0132 -306 WindowToBack (Window) (A0)
-$0138 -312 WindowToFront (Window) (A0)
-$013E -318 WindowLimits (Window,minwidth,minheight,
maxwidth, maxheight) (A0,D0,D1,D2,D3)
-$0144 -324 SetPrefs (preferences,size,flag) (A0,D0,D1)
-$014A -330 IntuiTextLength (itext) (A0)
-$0150 -336 WBenchToBack ()
-$0156 -342 WBenchToFront ()
-$015C -348 AutoRequest (Window,Body,PText,NText,PFlag,
NFlag,W,H) (A0,A1,A2,A3,D0,D1,D2,D3)
-$0162 -354 BeginRefresh (Window) (A0)
-$0168 -360 BuildSysRequest (Window,Body,PosText,NegText,
Flags,W,H) (A0,A1,A2,A3,D0,D1,D2)
-$016E -366 EndRefresh (Window,Complete) (A0,D0)
-$0174 -372 FreeSysRequest (Window) (A0)
-$017A -378 MakeScreen (Screen) (A0)
-$0180 -384 RemakeDisplay ()
-$0186 -390 RethinkDisplay ()
-$018C -396 AllocRemember (RememberKey,Size,Flags) (A0,D0,D1)
-$0192 -402 AlohaWorkBench (wbport) (A0)
-$0198 -408 FreeRemember (RememberKey,ReallyForgot) (A0,D0)
-$019E -414 LockIBase (dontknow) (D0)
-$01A4 -420 UnlockIBase (IBLock) (A0)
[Link]
-$001E -30 InitLayers (li) (A0)
-$0024 -36 CreateUpfrontLayer (li,bm,x0,y0,xl,yl,flags,
bm2) A0,A1,D0,D1,D2,D3,D4,A2)
-$002A -42 CreateBehindLayer (li,bm,x0,y0,xl,yl,flags,
bm2) (A0,A1,D0,D1,D2,D3,D3,A2)
-$0030 -48 UpfrontLayer (li,layer) (A0,A1)
-$0036 -54 BehindLayer (li,layer) (A0,A1)
-$003C -60 MoveLayer (li,layer,dx,dy) (A0,A1,D0,D1)
-$0042 -66 SizeLayer (li,layer,dx,dy) (A0,A1,D0,D1)
-$0048 -72 ScrollLayer (li,layer,dx,dy) (A0,A1,D0,D1)
-$004E -78 BeginUpdate (layer) (A0)
-$0054 -84 EndUpdate (layer) (A0)
-$005A -90 DeleteLayer (li,layer) (A0,A1)
-$0060 -96 LockLayer (li,layer) (A0,A1)
-$0066 -102 UnlockLayer (li,layer) (A0,A1)
-$006C -108 LockLayers (li) (A0)
-$0072 -114 UnlockLayers (li) (A0)
-$0078 -120 LockLayerInfo (li) (A0)
-$007E -126 SwapBitRastPortClipRect (rp,cr) (A0,A1)
-$0084 -132 WhichLayer (li,x,y) (A0,D0,D1)
-$008A -138 UnlockLayerInfo (li) (A0)
-$0090 -144 NewLayerInfo ()
-$0096 -150 DisposeLayerInfo (li) (A0)
-$009C -156 FattenLayerInfo (li) (A0)
-$00A2 -162 ThinLayerInfo (li) (A0)
-$00A8 -168 MoveLayerInfrontOf (layer_to_move,
layer_to_be_in_front_of) (A0,A1)
[Link]
-$001E -30 SPFix (float) (D0)
-$0024 -36 SPFit (integer) (D0)
-$002A -42 SPCmp (leftFloat,right,Float) (D1,D0)
-$0030 -48 SPTst (float) (D1)
-$0036 -54 SPAbs (float) (D0)
-$003C -60 SPNeg (float) (D0)
-$0042 -66 SPAdd (leftFloat,rightFloat) (D1,D0)
-$0048 -72 SPSub (leftFloat,rightFloat) (D1,D0)
-$004E -78 SPMul (leftFloat,rightFloat) (D1,D0)
-$0054 -84 SPDiv (leftFloat,rightFloat) (D1,D0)
[Link]
-$001E -30 IEEEDPFix (integer,integer) (D0,D1)
-$0024 -36 IEEEDPFit (integer) (D0)
-$002A -42 IEEEDPCamp (integer,integer,integer,integer)
(D0,D1,D2,D3)
-$0030 -48 IEEEDPTst (integer,integer) (D0,D1)
-$0036 -54 IEEEDPAbs (integer,integer) (D0,D1)
-$003C -60 IEEEDPNeg (integer,integer) (D0,D1)
-$0042 -66 IEEEDPAdd (integer,integer,integer,integer)
(D0,D1,D2,D3)
-$0048 -72 IEEEDPSub (integer,integer,integer,integer)
(D0,D1,D2,D3)
-$004E -78 IEEEDPMul (integer,integer,integer,integer)
(D0,D1,D2,D3)
-$0054 -84 IEEEDPDiv (integer,integer,integer,integer)
(D0,D1,D2,D3)
[Link]
-$001E -30 SPAtan (float) (D0)
-$0024 -36 SPSin (float) (D0)
-$002A -42 SPCos (float) (D0)
-$0030 -48 SPTan (float) (D0)
-$0036 -54 SPSincos (leftFloat,rightFloat) (D1,D0)
-$003C -60 SPSinh (float) (D0)
-$0042 -66 SPCosh (float) (D0)
-$0048 -72 SPTanh (float) (D0)
-$004E -78 SPExp (float) (D0)
-$0054 -84 SPLog (float) (D0)
-$005A -90 SPPow (leftFloat,rightFloat) (D1,D0)
-$0060 -96 SPSqrt (float) (D0)
-$0066 -102 SPTieee (float) (D0)
-$006C -108 SPFieee (float) (D0)
-$0072 -114 SPAsin (float) (D0)
-$0078 -120 SPAcos (float) (D0)
-$007E -126 SPLog10 (float) (D0)
[Link]
-$0006 -6 AllocPotBits (bits) (D0)
-$000C -12 FreePotBits (bits) (D0)
-$0012 -18 WritePotgo (word,mask) (D0,D1)
[Link]
-$002A -42 AddTime (dest,src) (A0,A1)
-$0030 -48 SubTime (dest,src) (A0,A1)
-$0036 -54 CmpTime (dest,src) (A0,A1)
[Link]
-$001E -30 Translate (inputString,inputLength,
outputBuffer,bufferSize) (A0,D0,A1,D1)
GENERAL INSTRUCTIONS
LOGICAL OPERATIONS