Recent content by magneto202

  1. M

    PCSPIM - declaring an array of strings

    Excellent. have remained with the declaration of: Nstart: .asciiz "the","dog","run" and has worked successfully for my simulation implementation. The string array addressing in memory is consistent when I try access byte by byte. Thanks chiro for the input.
  2. M

    PCSPIM - declaring an array of strings

    Hey all, So declaring integers successively in memory (using .word) in an array is all well and understandable. Since an integer is 4 bytes in length, as is a memory word. For example: .data x: .word 2, -13, 24, 123 #initialization of elements 0 to 3 of array x However, how would...
Back
Top