Confirmation on register bits
Confirmation on register bits
I'm just looking for confirmation on what the order of the bits are in two byte registers such as ch and cl compare to the word register (in this case cx) they are contained in. To be more exact is bit 0 of cx the same as bit 0 of cl? I'm asking because bts doesn't work on 8 bit registers.
Working On:Bootloader, RWFS Image Program
Leviathan: http://leviathanv.googlecode.com
Kernel:Working on Design Doc
Leviathan: http://leviathanv.googlecode.com
Kernel:Working on Design Doc
Re: Confirmation on register bits
Never mind, I got it all working. (Bootloader Is Nearing Completion!)
Working On:Bootloader, RWFS Image Program
Leviathan: http://leviathanv.googlecode.com
Kernel:Working on Design Doc
Leviathan: http://leviathanv.googlecode.com
Kernel:Working on Design Doc
Re: Confirmation on register bits
Just for the record (in case anyone ever needs an answer): the LSB of CX is CL. (L: low, get it?).nekros wrote:I'm just looking for confirmation on what the order of the bits are in two byte registers such as ch and cl compare to the word register (in this case cx) they are contained in. To be more exact is bit 0 of cx the same as bit 0 of cl? I'm asking because bts doesn't work on 8 bit registers.
JAL