Конвертировать C ++ в MIPS сборку - PullRequest
2 голосов
/ 24 сентября 2011

Этот код собирается найти максимальный элемент в массиве. Я хочу преобразовать этот код в код сборки MIPS, может кто-нибудь мне помочь ... Или просто скажите, как инициализировать массив в MIPS.

void max_array()
{
    int a[10]={2,3,421,4,32,4,3,1,4,5},max;
    for(int i=0;i<9;i++)
    {
        cout<<a[i];
    }
    max=a[0];
    for(int j=1;j<9;j++)
    {
        if (max<a[j])
        {
             max=a[j];
        }
    }
    return max;

 }

Ответы [ 2 ]

3 голосов
/ 24 сентября 2011
    .data   # variable decleration follow this line

array1: .word   2, 3, 421, 4, 32, 4, 3, 1, 4, 5 #10 element array is declared
max:    .word   2

la  $t0, array1         #load base address of array1
main:                       #indicated the start of the code
#to access an array element ($t0), 4($t0), 8($t0)..........
3 голосов
/ 24 сентября 2011

Вот пример

        .data
array1:     .space  12              #  declare 12 bytes of storage to hold array of 3 integers
        .text
__start:    la  $t0, array1     #  load base address of array into register $t0
        li  $t1, 5                  #  $t1 = 5   ("load immediate")
        sw $t1, ($t0)                #  first array element set to 5; indirect addressing
        li $t1, 13                  #   $t1 = 13
        sw $t1, 4($t0)           #  second array element set to 13
        li $t1, -7                  #   $t1 = -7
        sw $t1, 8($t0)           #  third array element set to -7
        done
...