[A83] Re: HL = A * 12 (fast)


[Prev][Next][Index][Thread]

[A83] Re: HL = A * 12 (fast)




> A little question that can be a little bit outer the subject..
> Can somone explain to me what mul12table >> 8 mean ?

In TASM at least, '>>' is the right shift operator. The 8 means it's shifted
8 bits. mul12table is address and shifting it 8 bits gives you the higher
byte.

1234h >> 8 = 12h




Follow-Ups: References: