Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My boss asked me to convert this to assembly and I don't know a lot about assembly. Could someone please help me out?

This is the C-pseudo code given to me

 //Global Variables 
 #define HRM_PERIOD 15

int hrArr [HRM_PERIOD]

int *hrPt = hrArr;

/* 
Function addtoarray
Parameter: int np - a value to add to the array

Description: Stores 16-bit value np in array using global pointer hraPt.
 hraPt is incremented so that the next call will add the value
 to the next element in the array. The pointer wraps to start
 when it reaches the end of the array
*/ 

void addToArray(int np)
{
*hraPt = np;// save value
hraPt++; // increment pointer
// wrap around
if (hraPt == hrArr + HRM_PERIOD) 
hraPt = hrArr
}

Please help me

share|improve this question
2  
For what architecture and processor? – rzetterberg Dec 20 '11 at 15:50
3  
Not to sound too snarky, but your boss seems to have problems assigning tasks to resources effectively. If the company needs assembly development done, they may want to hire an assembly developer. – David Dec 20 '11 at 15:52
12  
Is your "boss" a college professor, by any chance? – Fred Larson Dec 20 '11 at 15:55
3  
Couldn't you do that with the compiler? That's basically what they do, and they generally do it better than we do anyway. Why is your boss asking you to do this? This looks more like homework than work. – Derek Dec 20 '11 at 15:55
4  
Damn. I'd just written it in MOS-6502 assembly, and the question got closed. :-( – BRPocock Dec 20 '11 at 16:05
show 3 more comments

closed as not a real question by amit, Macmade, Graham Borland, Michael J. Barber, Richard Ev Dec 20 '11 at 16:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Can you try the -S option of the GCC ?

This is the documentation

-S option:

"Stop after the stage of compilation proper; do not assemble. The output is in the form of an assembler code file for each non-assembler input file specified. By default, the assembler file name for a source file is made by replacing the suffix '.c', '.i', etc., with '.s'. Input files that don't require compilation are ignored."

I believe that if you put that code in a file "source.c", and you have gcc installed this will do the work:

gcc -S source.c

The output will be a file named: source.s -> the assembly code.

share|improve this answer
2  
Better yet, tell your boss to check the -S option. – Tom Dec 20 '11 at 18:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.