| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | Newsletters | VB Forums | Developer.com |
|
|||||||
| Assembly Questions and Answers for Assembly here! |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I have created a string the following way:
.data STRING1: .asciiz "76543210" .text How do I access each byte of this string? I would like to load each byte into registers and then run tests on each byte. I'd use something like this: lb $s0, 0(--What goes here?--) # load '7' into $s0 lb $s1, 1(--???--) # and so forth What do I do? Please help! I am new to assembly and kinda confused. |
![]() |
| Bookmarks |
|
||||||
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|