When the code that the assembler generates is actually executing.
This is a very "Computer Science"-like idea. It takes some careful thought to see what is going on. Here is a table:
What the programmer writes | What the extended assembler translates it into | What the basic assembler does | What happens at run time |
---|---|---|---|
li $t1,2 lb $v0,data($t1) |
ori $t1,$0,2 lui $at,4097 addu $at,$at,$t1 lb $v0,0($at)(4097 is the upper half of the address of data.) |
The basic assembly language is translated into machine code. 34090002 3c011001 00290821 80220000 |
The first three machine instructions
execute, placing the address of the
third byte of the array into register
|
At what index do "C" and Java arrays begin?