Storing string outside .data in MIPS

218 Views Asked by At

For a project we are looking for way to store strings without past by .data. Indeed we want to store them on the fly during the all execution of our program.

We saw things like that at beginning of programms :

.data 
  hello : .asciiz "hello world"

But we want to store them in the stack-segment during all execution

Thanks for future help

0

There are 0 best solutions below