Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/diaszano/par-ou-impar-assembly


https://github.com/diaszano/par-ou-impar-assembly

Last synced: 12 days ago
JSON representation

Awesome Lists containing this project

README

        

# Par ou Impar em ASSEMBLY
## O objetivo era reescrever o seguinte código C em MIPS Assembly:
###
~~~c
int main(int argc, char const *argv[]){
int i;
int vetor[8];
for(i = 0; i < 8; i++) {
if(i%2 == 0){
vetor[i] = i * 2;
}else{
vetor[i] = vetor[i] + vetor[i-1];
}
}
return 0;
}
~~~
### Cada posição do vetor deve ter 4 bytes e deve ser armazenada, em sequência, a partir da posição 0x1001000 da memória.