public static void doIN(CpuContext ctx, byte Port)
 {
     //IN A,\(n\)
     //	byte port = read8(ctx, ctx->PC++);
     //	BR.A = ioRead(ctx, BR.A << 8 | port);
     ctx.A = ctx.ioRead((ushort)((ctx.A << 8) | Port));
 }