Questions tagged [ci20]

MIPS Creator CI20 development board

The MIPS Creator CI20 board is a tiny Linux computer with a dual-core 1.2GHz MIPS CPU.

5 questions
1
vote
2 answers

OpenELEC: Bootstrap GCC with libatomic

I am trying to bootstrap GCC during OpenELEC compilation. I need to add libatomic for the target system so as to compile some packages. When I try to add libatomic for the target system, I get a compilation error…
malat
  • 12,152
  • 13
  • 89
  • 158
0
votes
0 answers

Trouble tracking return pointer from fopen in MIPS on a ci20 machine

I am currently working on a program that reads in a file and finds the palindromes in the file in MIPS on a ci20 machine. I am having trouble understand where the return pointer is from my jal to my fopen function. Some of my current code .option…
TurtleMan
  • 175
  • 2
  • 15
0
votes
0 answers

Loading a 32 bit unsigned value into a single mips register

I am currently working a program that runs the Collatz Conjecture. I am confused how to represent 2^32 - 1 or 0xFFFFFFFF into a single register. I am currently using #lui $s5, 0xFFFF # 2^32 - 1 stored in $s5 #ori $s5, $s5, 0xFFFF # storing…
TurtleMan
  • 175
  • 2
  • 15
0
votes
1 answer

Prompting for user input in assembly ci20 seg fault

I am currently working on a small program on a ci20 machine that prompt the user for a integer value then print the value to the screen. My current code .data prompt: .asciiz "Please enter an integer: " message: .asciiz "\nValue entered:…
TurtleMan
  • 175
  • 2
  • 15
0
votes
1 answer

Compiling on MIPS - ASM

I'm trying to compile Plex Home Theater on my new Ci20 but I'm coming across some build errors which I believe are ASM related, knowing nothing about ASM I was wondering if anyone were able to provide any assistance. Build Error [ 19%] Building CXX…
Freddy Wetson
  • 456
  • 1
  • 4
  • 23