data MemoryData asciiz this is not a password 1122 this is p
.data
MemoryData:
.asciiz \"this is not a password 1122^&*( this is password?987654hello world!!!!1234567\"
.text
.globl main
main:
# Your code starts here
la $a0, MemoryData # load the head address of \"MemoryData\" into register $a0
li $v0, 4 # let computer know you about to print out a string
syscall # pring out the string
((((((this is the Code he provide))))
can u help me with full solution please (:
Solution
data
MemoryData:
.asciiz \"this is not a password 1122^&*( this is password?987654hello world!!!!1234567\"
.text
.globl main
main:
syscall
