How would I create a char array and access those chars in MIPS? Im doing a project and part of it is to do this. I understand how to with integers and cant find any reference online on how to deal with just chars, specifically im trying to port...
static char hexdigits[16] = "0123456789ABCDEF";
Heres my failed attempt:
hexarray: .word '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' #declare memory space for our hex array
EDIT: if someone could provide an example how to print out one of these items it would be very helpful (you can modify the code i have to whatever you wish). as I im just getting a memory address error.