Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
80 views

How do the tries work that are used in the mmo object format's symbol tables?

I try to understand, how the mmo object file format works, which is used for Don Knuth's educational MMIX architecture. I have not bought MMIXware, so I have to guess most of the details from the ...
2
votes
2answers
201 views

How to link multiple assembler files for MMIX

Assume, I wrote a small lib implementing something "fprint"-likely. The book that teaches me MMIX (Das MMIX-Buch, german) always copies the whole lib into the new program, but I dislike this approach. ...
2
votes
2answers
215 views

MIX or MMIX - what is the best

Hi my first question … I start reading ‘The Art of Computer Programming’. I know it’s hard. First I decide to lean the language of book – I start with MIX. I made some exercises and I think I can ...
1
vote
1answer
128 views

Printf problem with gcc on mmix

I have compiled the gcc 4.6.0 for mmix according to http://www.bitrange.com/mmix/install.html. After I try their simple hello world, or any other call to printf with more than the first string, only ...
1
vote
1answer
43 views

Printing a number contained in a register

I'm learning MMIX so I tried making a simple program to add one to itself and print the result. Unfortunately it doesn't print anything. Here is my program: n IS $4 y IS $3 t IS $255 ...
0
votes
3answers
217 views

Wanna learn assembler (MMIX?) - some suggestions?

As I try to learn, what my computer's doing, I want to try to learn some assembler. I think I won't use assembler in my life anywhere, so I don't want to torture (some people write like it's a bit ...
0
votes
1answer
104 views

Getting MMIX repo for CVS/Git

How can you get the CVS repo of MMIX to CVS/Git? I know how to clone a repo at github by git clone URL, but I have never really used sourceforge before. They use CVS which is new to me. My ...