A fast PCD8544 library (Nokia 5110)

Is it possible to map CS, RST or CE pin to Arduino Uno 12?

If I change this:

#define PIN_DC			0x01	// D8
#define PIN_RESET			0x02	// D9
#define PIN_CE				0x04	// D10

To this:

#define PIN_DC			0x10	// D12
#define PIN_RESET			0x02	// D9
#define PIN_CE				0x04	// D10

Or did I misunderstood the hex pin mapping? Is not pin 12 = 0x10?

Thanks, seems very nice library though. Too bad that most other libraries didn't use the hardware SPI, so I'm having some problems with remapping my project with this library.