The instructions I am talking about have opcodes A0 ~ A3. You used
different instructions that generate different opcodes:
00000002 48 B8 89 67 45 23 01 00 | mov rax, 0123456789h
0000000A 00 00 |
0000000C 8A 00 | mov al, [rax]
As you can see from the output, the opcodes for the instructions you used
are 48 and 8A. Those are not the instructions I am talking about. Perhaps
you are meaning to say: "You are right. PoAsm does not support those
instructions and you have to use an alternative way to accomplish the same
thing." What I am trying to do is to understand these instructions with
opcodes A0 ~ A3 as I am writing an assembler to support them. I was
wanting to use PoAsm to verify the correctness of my assembler's output.