Recent content by magneto202
-
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.- magneto202
- Post #3
- Forum: Programming and Computer Science
-
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...- magneto202
- Thread
- Array Strings
- Replies: 2
- Forum: Programming and Computer Science