Nios II is a 32-bit embedded-processor architecture designed specifically for the Altera family of FPGAs.

learn more… | top users | synonyms

2
votes
2answers
105 views

Why does my producer - consumer pattern have unexpected output?

In this pattern (producer - consumer), 3 producers are one thread each and produce prime numbers. But when I run the program, the first prime number that is consumed is not the first that it produces, ...
0
votes
0answers
27 views

How to run Nios 2 SBT?

I recently downgraded from Quartus II Subscription Edition to Web Edition since Web Edition can do all that I need and my license had expired for the subscription edition. So now when I try to restart ...
0
votes
0answers
66 views

Memory write in NIOS II - value put in wrong address

First of all, I should admit I have submitted this question on the altera forum (http://www.alteraforum.com/forum/showthread.php?t=40494). I am asking here too because I think it is likely to be quite ...
0
votes
1answer
30 views

Please help me understand this nios2 code

We're supplied some assembly for nios2 that I don't fully understand. If we can start with this instruction then I don't understand what it's for: .set noat # required since we push r1 ...
1
vote
1answer
67 views

What info does this code save about an interrupted thread?

My analysis is that the assembly saves the stack pointer of the interrupted thread to the array. Is that correct? The code I've been looking at that I think does this is: ldw r4,0(sp) ...
1
vote
1answer
176 views

Hardware or software interrupt or exception by trap instruction?

The manual says Trap Instruction When a program issues the trap instruction, the processor generates a software trap exception. A program typically issues a software trap when the ...
0
votes
2answers
155 views

verilog parameter as input - nios II

I am looking out for a way so that I can send an input value from nios as a parameter to a verilog module. or Any other ways of assigning verilog parameter from input.
0
votes
0answers
107 views

How to make *.sopcinfo file?

If I must create a .sopcinfo file for the Nios II IDE, is the SOPC builder from Altera for Nios II (Cyclone IV, DE2-115) in Nios II IDE? Must I use Qsys to make the *.sopcinfo ?
1
vote
1answer
152 views

how does movia, movi, ldw, addi, stw, ldw, ret statements work?

I thought it will be easy to explain on specific example, i understood beq works like if r9==r10 that statement gives a call for the label which is shown on the same line but i didn't understand ...
0
votes
1answer
88 views

(SOLVED) Transform 4bit hexadec to its correspodning 7bit ascii-code, assembly code

I've gotten the task to make a sub-routine which transforms a 4bit hexadecimal value to its correspodning 7-bit ascii-code. Eg. 0010 which is 2 converts to 011 0010 (ascii for '2'), 1011 which is B ...
0
votes
1answer
114 views

How to find system library properties in Nios 2 IDE v12?

I'm trying to make a project according to the spec but the dialogs seem to have changed completely in version 12. I don't nearly get similar dialogs in Nios 2 IDE v12. This is what I search: This ...
0
votes
1answer
137 views

What does the assembly instruction trap do?

"RTFM" A program typically issues a software trap when the program requires servicing by the operating system. The general exception handler for the operating system determines the reason ...
0
votes
3answers
93 views

Why do I get compilation errors?

This is my program: #include <stdio.h> #define uart0 0x860 #define uart1 0x880 void send_char( int output ) { int nothing; //while write on uart1 is not ready, wait ...
0
votes
0answers
136 views

Generating PS2 Interrupts on a DE2 Board

I am trying to generate PS2 interrupts on a DE2 board with a NIOS II processor. The following Assembly code is a very simple interrupt service routine but it never gets executed. I have checked and ...
1
vote
0answers
60 views

Read Write Verilog Reg in NIOS

How can I read or write verilog reg (variable) in NIOS CPU? What should I do? I use DE0 NANO, cyclone IV and NIOS 2.
2
votes
0answers
122 views

Mac address for DM9000a on Nios ii

I have an assignment to communicate between computer and DE2 board by using Nios ii and module DM9000A. I found in file DM9000A.c /* store MAC address into NIC */ for (i = 0; i < 6; i++) ...
1
vote
2answers
147 views

How to open a file with Nios II

iam currently using NIOS II with Quartus II v12.0 Since Nios II uses Language C, it would be allowed to open files, but the command fopen("filename","readmode"); is not avaiable for using, cause its ...
0
votes
1answer
1k views

How to write a Nios II 1 ms delay subroutine?

I've got an assignment to write an assembly delay subroutine: Specification Name: The subroutine must be called delay. Input parameters: Only one, in register r4. The contents of register ...
0
votes
1answer
251 views

How to output the second digit here?

My output is supposed to look like this according to the spec: 00:00 00:01 00:12 01:23 12:34 23:45 34:56 45:67 56:78 67:89 78:9A 89:AB 9A:BC AB:CD BC:DE CD:EF DE:F0 EF:01 F0:12 01:23 12:34 and so ...
1
vote
2answers
121 views

How can I load an image on NIOS II?

Well, i'am currently using NIOS II, with Quartus II 12.0 and iam facing some problems. I would like to know how can I manipulate images on Nios II, if there is any library that would allow me to do ...
0
votes
1answer
457 views

Difference between load word and move?

What is the difference between ldw r8,0(r4) and mov r8, r4 ? Load word says it "copies from memory" but when load workd copies from r4 it is copying from register and not memory right?
0
votes
0answers
96 views

Why is load word not working?

I'm trying to write an assembly program for an assignment but not even the first row is working: .global puttime .text .align 2 .include "../mymacro.s" puttime: ...
1
vote
3answers
70 views

Analysing &, && and | for this code?

I want to illustrate the difference with this code for(i = 32; i > 0; i--) { if(a&1 != 0) //bit mask total += b; a = a >> 1; b = b << 1; } In the code & is ...
0
votes
0answers
401 views

Did I solve this assigment correctly?

Here's the assignment that is my homework: Home Assignment 3 - hexasc Task HA 3.1: Draw a flow-chart for a subroutine to convert a 4-bit hexadecimal value to the corresponding 7-bit ...
0
votes
1answer
154 views

How to call this subroutine?

I'm learning MIPS 32 bit assembly in the NIOS II IDE and I've got a complete working subroutine that multiplies two numbers stored in r4 and r5 and return the result in r2: .global muladd ...
2
votes
1answer
3k views

How to convert from 4-bit hexadecimal to 7-bit ASCII?

The assigment is to learn assembly programming by writing a subroutine that can convert between 4-bit hexadecimal and 7-bit ASCII. At first I had no idea but after some research I could make and ...
0
votes
3answers
203 views

Writing this assembly program

I've a very precise specification for an assembly subroutine: Specification Name: The subroutine must be called hexasc. Input parameters: Only one, in register r4. The 4 least significant ...
1
vote
1answer
434 views

What is the “relationship” between addi and subi?

I'm supposed to answer this question. After some research it says that add and sub have the same opcode and differ only in the functional field. Is this the answer or something else? Update It's ...
0
votes
1answer
733 views

Translating MIPS to machine code

.text .align 2 .global main .equ val,0x4712 # 16-bit binary code for 0x4712: 0100 0111 0001 0010 # Program code starts now main: ...
-1
votes
1answer
133 views

What this program does? [closed]

It's a MIPS program that I can run in Nios II IDE that produces the ASCII alphabet as output. My task to to say how and explain what does what in this program: .global main # makes ...
2
votes
1answer
518 views

How to print a number using Verilog and Altera DE2 board's VGA?

I am using Altera DE2 FPGA board and verilog, designed a simple CPU using these. I need to print the value of a register using the VGA output of the board. How should I go about this?
4
votes
1answer
1k views

Assembler instructions bne and br (NIOS II). How is their offset calculated?

I have this assembler code, which I'm supposed to translate into machine code in binary form: .text .align 2 .global main .equ val,0x4712 main: ...