Your program can address a pin by any name you want, other than reserved language keywords.
byte A = 0;
pinMode(A, OUTPUT);
digitalWrite(A,1);
I would want it to be in the bootloader of the ATmega
The bootloader knows nothing about pin names.