jeq instruction not documented in doc64/asm

2014-11-26 Thread Loyall, David
Hello. FYI, I see an instruction 'jeq' in used in src64/io.l, but I don't see it described in doc64/asm. Hm, for that matter, I don't see 'jne' or 'jgt' either. Maybe I shouldn't expect to find 'jeq'? I encountered 'jeq' in the 12th line of the definition of testEscA_F (which I pasted below

Re: jeq instruction not documented in doc64/asm

2014-11-26 Thread Alexander Burger
Hi Dave, FYI, I see an instruction 'jeq' in used in src64/io.l, but I don't see it described in doc64/asm. Hm, for that matter, I don't see 'jne' or 'jgt' either. Maybe I shouldn't expect to find 'jeq'? That's right: 'jeq' is just an alias for 'jz', as 'jlt' is one for 'jc'. You can find