I have an assignment where I have to take an input in MMIX and return the exact same thing, with the exception that all spaces must be newlines. I've been trying for about 2 days now and have figured out how to take input and how to output it to the console. But the second part eludes me and the assignment is due tomorrow. Here's what I have so far:
LOC Data_Segment % Sets data storage location
GREG @ % Reserves a new global register
Wordbuffer BYTE 0 % New Byte for incoming words
LOC Wordbuffer+5 % After the buffer
Arg OCTA Wordbuffer
OCTA 21 % Sets max word length
LOC #100 % Code section
Main LDA $255,Arg % Loads the buffer into the global register
TRAP 0,Fgets,StdIn % Gets input
LDA $255,Wordbuffer % Puts input in global register
TRAP 0,Fputs,StdOut % Prints inputted word
TRAP 0,Halt,0 % Stops program
I've inserted a loop between the calls to Fgets and Fputs
Also responding to comments
test with mmix assembler and simulator