Nios® V/II Embedded Design Suite (EDS)
Support for Embedded Development Tools, Processors (SoCs and Nios® V/II processor), Embedded Development Suites (EDSs), Boot and Configuration, Operating Systems, C and C++

assembly inline C for NIOS II

Altera_Forum
Honored Contributor II
1,045 Views

Hi all, 

 

I am new for NIOS II application develoment.  

And I need to embed a few lines of assembly  

in my C code. like: 

 

# include "system.h" 

 

void main() 

C code 1; 

_asm_("assembly 1"); 

C code 2; 

_asm_("assembly 2"); 

C code 3; 

}  

 

 

My question is if the Nios II SBT will automatically  

save the previous operation results (from registers  

or somewhere else) before execute the assembly.  

As we know it does when the system handle interrupt.  

But how about this sutiation? Thanks in advance if you can help.:) 

 

Jay
0 Kudos
1 Reply
Altera_Forum
Honored Contributor II
291 Views

You need to read up how gcc does inline assembly.

0 Kudos
Reply