I'm working through Knuth's The Art of Computer Programming, and I have a question about the MIX assembly language, particularly the DIV operator.
On page 133, he gives an example of how the DIV operator affects the Accumulator and Extension registers, given a particular state of those registers, and the input memory cell. The question is described (and answered, I think) in this Stack Overflow post: How does division work in MIX?
My problem is that the person who answered converted the value of the 10-byte word stored in rAX (registers A and X) into a single number, using a method that I don't understand:
If you do the division by hand, by converting the bytes into a single number you will get -210,501,825 (if you're using the smallest kind of byte - which is 6 bits (!) in Knuths book)
Can somebody walk me through this conversion?
Thanks, Sam
It depends on the byte size that you're using. Knuth deliberately leaves the underlying implementation of bytes undefined - each byte can support anywhere from 64 to 100 underlying values, but the minimum is 64, and that's what most implementations seem to use.
Let's say each byte holds 64 values, and say you have the following register contents in rA:
The least significant byte is on the right hand side. Therefore, the "overall" value of the entire rA register would be:
That's exactly what GNU MDK will give you:
For rAX (rA and rX considered as one register), it's the same idea, except you put rA to the left of rX. So if you have:
The overall value would be:
For a decimal implementation, you would just use 100 instead of 64 as the base. So in the initial example, you would end up with:
Hope that helps.