<< Chapter < Page Chapter >> Page >
You will work through a section of TI TMS320C54x assembly code by hand. The instructions include multiplication of fractional numbers in two's complement representation.

Assembly exercise

Analyze the following lines of code. Refer to Two's Complement and Fractional Arithmetic for 16-bit Processors , Addressing Modes for TI TMS320C54x , and the Mnemonic Instruction Set manual for help.

1 FIR_len .set 3 2 3 ; Assume: 4 ; BK = FIR_len 5 ; AR0 = 1 6 ; AR2 = 1000h 7 ; AR3 = 1004h 8 ; 9 ; FRCT = 1 10 11 stl A,*AR3+% 12 rptz A,(FIR_len-1) 13 mac *AR2+0%,*AR3+0%,A

Anything following a " ; " is considered a comment. In this case, the comments indicate the contents of theauxiliary registers, the BK register, and the address registers before the execution of the first instruction, stl . The line FIR_len .set 3 defines the name FIR_len as equal to 3. The BK register contains the length of the circular buffer we want to use. The % modifies the increment operator + so that it behaves as a circular buffer. This means that the address registers will be incremented until the(memory-address mod value-in-BK) = 0. When the increment operator + is followed by a 0 , it increments by the value specified in register AR0 .

Note that any number followed by an " h " or preceded with a 0x represents a hexadecimal value.

1000h and 0x1000 both refer to the decimal number 4096.

Assume that the data memory is initialized as follows starting at location 1000h .

Data Memory Assignment (before execution)

After familiarizing yourself with the stl , rptz , and mac instructions, step through each line of code and record the values of theaccumulator A and auxiliary registers AR2 and AR3 in the spaces provided in . Additionally, record the value of the memory contents after all three instructions have been"executed" in the blank data memory table provided in .

A AR2 AR3
00 0000 8000h 1000h 1004h at start of code
after stl instruction
after rptz instruction
after first mac instruction
after second mac instruction
after third mac instruction
Execution Results

When working through the exercise, take into account that the accumulator A is a 40-bit register, and that the multiplier is in the fractional arithmetic mode . In this mode, integers on the DSP are interpreted asfractions, and the multiplier will treat them accordingly. This is done by shifting the result of the integer multiplierin the ALU left one bit. (All the arithmetic is fractional in these examples.) Multiplies performed by the ALU(via the mac instruction) produce a result that is twice what you would expect if you just multiplied the twointegers together. DSP numerical representation and arithmetic are described further in Two's Complement and Fractional Arithmetic for 16-bit Processors .

Data Memory Assignment (after execution)

Questions & Answers

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Dsp laboratory with ti tms320c54x. OpenStax CNX. Jan 22, 2004 Download for free at http://cnx.org/content/col10078/1.2
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Dsp laboratory with ti tms320c54x' conversation and receive update notifications?

Ask