aboutsummaryrefslogtreecommitdiff
path: root/sw/test.asm
blob: a77f76e4c68110f3177c0e6a91fa13ddfac0e152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.global entry

.data                  /* data section*/
        .word 0x00AF
        .word 0x0400
.text                  /* code goes to text section*/
.ent entry
entry:
        lw $t2, 0x200
        lw $t0, 0x201
        sw $t2, ($t0)
.end entry