Subclasses
Software Engineering Tools (2917 products)
-
10/10
IntelliJ IDEA
IntelliJ IDEA is an intelligent Java IDE intensely focused on developer... -
10/10
IsaViz
IsaViz is a visual environment for browsing and authoring RDF models... -
10/10
Junitdoclet
"Lowering the step toward JUnit by offering a convenient way to create,... -
10/10
McCabe CM - TRUEchange
McCabe CM provides an intuitive and logical approach to managing... -
10/10
A6fw
"A framework for creating CRUD based applications utilizing MDA, and a...
Forum
embedding ASM in C
i took a digital filter code from cornell university website but when i try running it in winavr i get the error
" prog.c:161: error: expected string literal before '.' token"
the code is as follows
int filter1(int xx)
{
asm volatile
(
.macro mult_acc //error accurs here
muls r23, r21
add r31, r0
mul r22, r20
add r24, r0
adc r30, r1
adc r31, r27
mulsu r23, r20
add r30, r0
adc r31, r1
mulsu r21, r22
add r30, r0
adc r31, r1
.endm
push r20
push r21
clr r27
clr r24 //clear 24 bit result reg // msb to lsb => r31:r30:r24
clr r30
clr r31
lds R22, _B111
lds R23, _B111+1
ld R20, Y
ldd R21, Y+1
mult_acc
lds R22, _B112
lds R23, _B112+1
lds R20, _x11_1
lds R21, _x11_1+1
mult_acc
lds R22, _B113
lds R23, _B113+1
lds R20, _x11_2
lds R21, _x11_2+1
mult_acc
lds R22, _A112
lds R23, _A112+1
lds R20, _y11_1
lds R21, _y11_1+1
mult_acc
lds R22, _A113
lds R23, _A113+1
lds R20, _y11_2
lds R21, _y11_2+1
mult_acc
lds R20, _x11_1
lds R21, _x11_1+1
sts _x11_2, r20
sts _x11_2+1, R21
ld R20, Y
ldd R21, Y+1
sts _x11_1, r20
sts _x11_1+1, R21
lds R20, _y11_1
lds R21, _y11_1+1
sts _y11_2, R20
sts _y11_2+1, R21
sts _y11_1, r30
sts _y11_1+1, r31
lds R22, _B121
lds R23, _B121+1
lds R20, _y11_1
lds R21, _y11_1+1
clr r30
clr r31
mult_acc
lds R22, _B122
lds R23, _B122+1
lds R20, _x12_1
lds R21, _x12_1+1
mult_acc
lds R22, _B123
lds R23, _B123+1
lds R20, _x12_2
lds R21, _x12_2+1
mult_acc
lds R22, _A122
lds R23, _A122+1
lds R20, _y12_1
lds R21, _y12_1+1
mult_acc
lds R22, _A123
lds R23, _A123+1
lds R20, _y12_2
lds R21, _y12_2+1
mult_acc
lds R20, _x12_1
lds R21, _x12_1+1
sts _x12_2, r20
sts _x12_2+1, R21
lds R20, _y11_1
lds R21, _y11_1+1
sts _x12_1, r20
sts _x12_1+1, R21
lds R20, _y12_1
lds R21, _y12_1+1
sts _y12_2, R20
sts _y12_2+1, R21
sts _y12_1, r30
sts _y12_1+1, r31
pop r21
pop r20
)
}
[...]
" prog.c:161: error: expected string literal before '.' token"
the code is as follows
int filter1(int xx)
{
asm volatile
(
.macro mult_acc //error accurs here
muls r23, r21
add r31, r0
mul r22, r20
add r24, r0
adc r30, r1
adc r31, r27
mulsu r23, r20
add r30, r0
adc r31, r1
mulsu r21, r22
add r30, r0
adc r31, r1
.endm
push r20
push r21
clr r27
clr r24 //clear 24 bit result reg // msb to lsb => r31:r30:r24
clr r30
clr r31
lds R22, _B111
lds R23, _B111+1
ld R20, Y
ldd R21, Y+1
mult_acc
lds R22, _B112
lds R23, _B112+1
lds R20, _x11_1
lds R21, _x11_1+1
mult_acc
lds R22, _B113
lds R23, _B113+1
lds R20, _x11_2
lds R21, _x11_2+1
mult_acc
lds R22, _A112
lds R23, _A112+1
lds R20, _y11_1
lds R21, _y11_1+1
mult_acc
lds R22, _A113
lds R23, _A113+1
lds R20, _y11_2
lds R21, _y11_2+1
mult_acc
lds R20, _x11_1
lds R21, _x11_1+1
sts _x11_2, r20
sts _x11_2+1, R21
ld R20, Y
ldd R21, Y+1
sts _x11_1, r20
sts _x11_1+1, R21
lds R20, _y11_1
lds R21, _y11_1+1
sts _y11_2, R20
sts _y11_2+1, R21
sts _y11_1, r30
sts _y11_1+1, r31
lds R22, _B121
lds R23, _B121+1
lds R20, _y11_1
lds R21, _y11_1+1
clr r30
clr r31
mult_acc
lds R22, _B122
lds R23, _B122+1
lds R20, _x12_1
lds R21, _x12_1+1
mult_acc
lds R22, _B123
lds R23, _B123+1
lds R20, _x12_2
lds R21, _x12_2+1
mult_acc
lds R22, _A122
lds R23, _A122+1
lds R20, _y12_1
lds R21, _y12_1+1
mult_acc
lds R22, _A123
lds R23, _A123+1
lds R20, _y12_2
lds R21, _y12_2+1
mult_acc
lds R20, _x12_1
lds R21, _x12_1+1
sts _x12_2, r20
sts _x12_2+1, R21
lds R20, _y11_1
lds R21, _y11_1+1
sts _x12_1, r20
sts _x12_1+1, R21
lds R20, _y12_1
lds R21, _y12_1+1
sts _y12_2, R20
sts _y12_2+1, R21
sts _y12_1, r30
sts _y12_1+1, r31
pop r21
pop r20
)
}
Date: October 9, 2008 at 06:18
Author:
leoniuds
Last post: October 9, 2008 at 06:18
Replies: 0
Please Suggest
Can we do data validation using HTTP unit. If yes please could ne one explain with an example.
Thanks in Advance
[...]
Thanks in Advance
Date: October 3, 2008 at 01:45
Author:
Golu
Last post: October 3, 2008 at 01:45
Replies: 0
Realizing Practical vision of the IT systems with Enterprise Architecture, SOA & MDA
This is a 2 - day workshop conducted in four major cities of USA in San Francisco (10-11 Nov'08), Atlanta (13-14 Nov'08), New York (17-18 Nov'08) & Chicago (20-21 Nov'08) by
Practicing Architect & C E O, iCMG Mr. Sunil Dutt Jha.
It benifits one who want to learn how peers at the world's leading organizations are
Creating business advantage using architecture strategies, Software Design Engineers,
Architects, Project & Technical Managers, CTOs & CIOs.
This 2 - day workshop is focused on enterprise software architecture as a specialty. The key focus areas include
- Understanding of multiple architecture frameworks
- Component based product line
- Model driven architecture (MDA) and service-oriented architecture (SOA) which are key for the companies to reducing IT costs
- ensuring system longevity and enhancing productivity
For more details visit: http://usa.icmgworld.com/
Should you need any further info, please feel free to contact Loveena.Joseph@icmgworld.com
[...]
Practicing Architect & C E O, iCMG Mr. Sunil Dutt Jha.
It benifits one who want to learn how peers at the world's leading organizations are
Creating business advantage using architecture strategies, Software Design Engineers,
Architects, Project & Technical Managers, CTOs & CIOs.
This 2 - day workshop is focused on enterprise software architecture as a specialty. The key focus areas include
- Understanding of multiple architecture frameworks
- Component based product line
- Model driven architecture (MDA) and service-oriented architecture (SOA) which are key for the companies to reducing IT costs
- ensuring system longevity and enhancing productivity
For more details visit: http://usa.icmgworld.com/
Should you need any further info, please feel free to contact Loveena.Joseph@icmgworld.com
Date: October 1, 2008 at 03:51
Author:
Loveena Joseph
Last post: October 1, 2008 at 03:51
Replies: 0
how to check history of check out files
how to check history of check out files .Is there any option to get the previous file please reply
[...]
Date: September 4, 2008 at 06:38
Author:
soura
Last post: September 4, 2008 at 06:38
Replies: 0
how to check history of check out files
how to check history of check out files .Is there any option to get the previous file please reply
[...]
Date: September 4, 2008 at 06:38
Author:
soura
Last post: September 4, 2008 at 06:38
Replies: 0
IEUnit features
What all features do IeUnit have?
[...]
Date: August 29, 2008 at 07:20
Author:
Mighty
Last post: August 29, 2008 at 07:20
Replies: 0
Generating dot file from Owl(ontology) file through java code
Hai ,
I am doing ontology visualization tool in java. It has to gnenrate dot file from owl ontology file and graph(image) file from dot file through java code. Using graphviz i have generated graph(image) file from dot file using java but i unable to generate dot file from owl ontology file.so can anybody help me to generate owl document to dot document through code. i am waiting for your answer .
[...]
I am doing ontology visualization tool in java. It has to gnenrate dot file from owl ontology file and graph(image) file from dot file through java code. Using graphviz i have generated graph(image) file from dot file using java but i unable to generate dot file from owl ontology file.so can anybody help me to generate owl document to dot document through code. i am waiting for your answer .
Date: August 23, 2008 at 00:37
Author:
Bass
Last post: August 23, 2008 at 00:37
Replies: 0
How to make a diameter customer and server over different computer
hi i work with the OpenBloX framwork. I want to put my diameter client and my diameter server over different.
Could you help me please thank you.
[...]
Could you help me please thank you.
Date: July 29, 2008 at 03:54
Author:
inzbill26
Last post: July 29, 2008 at 03:54
Replies: 0
iReport and WSAD
Can somebody give me the step how to integrate iReport with WSAD. Please... :(
[...]
Date: July 23, 2008 at 03:53
Author:
Rinoa
Last post: July 23, 2008 at 03:53
Replies: 0
Drawing Scale
How to Setup a Drawing Scale that also PRINTS to scale.
[...]
Date: July 21, 2008 at 08:53
Author:
Grasor
Last post: July 21, 2008 at 09:15
Replies: 2
REFER and INFO Method
Hello everyone,
i am doing tests on a SIP interconnexion with a telecom operator, using SIPP, and i need to test the REFER method and the INFO method.i am using SIPP as a UAC that sends the invite request following by the INFO request, or the invite request following by the REFER request. i am always getting the same error:'' Unsupported keyword''
can anyone help me finding the solution please. 10X
[...]
i am doing tests on a SIP interconnexion with a telecom operator, using SIPP, and i need to test the REFER method and the INFO method.i am using SIPP as a UAC that sends the invite request following by the INFO request, or the invite request following by the REFER request. i am always getting the same error:'' Unsupported keyword''
can anyone help me finding the solution please. 10X
Date: July 17, 2008 at 08:14
Author:
jad
Last post: July 17, 2008 at 08:14
Replies: 0
uml class diagram
In UML static structure i am not able to find any symbol which will explain unary association(uni directional).Please provide any solution.
[...]
Date: July 17, 2008 at 02:21
Author:
kshitij
Last post: July 17, 2008 at 02:21
Replies: 0
Unit testing with ASPUnit
I am relatively new to ASP and ASPUnit, but have worked with C sharp.Net development and NUnit unit testing. I have downloaded the ASPUnit.zip from the http://aspunit.sourceforge.net/ website and added the contents (.asp, .js files etc) in the unzipped folder to an application in Visual Interdev. I played around with the TCTest.asp file to get the hang of it. But I couldnt find any particular guidelines, examples on how exactly to use ASPUnit?
And I have a few questions and clarifications regarding ASPUnit usage:
* It is my understanding that ASPUnit can only be used for server side VBScript code. Therefore it cannot be used for Javascript code at all, correct?
* I saw how a code written within the test method itself can be tested using the Assertions. But how can I test code of another class? E.g. How can I call the Methods written in my ClassA from my Test application TestClassA? I tried with
And I have a few questions and clarifications regarding ASPUnit usage:
* It is my understanding that ASPUnit can only be used for server side VBScript code. Therefore it cannot be used for Javascript code at all, correct?
* I saw how a code written within the test method itself can be tested using the Assertions. But how can I test code of another class? E.g. How can I call the Methods written in my ClassA from my Test application TestClassA? I tried with