While attempting to disassemble my school library's book keeping app using IDA pro i came across this LDR statement which im not able to edit.
I wanted to increase the no. of pages of a particular book to a higher value so i found out the ARM instruction where it assigned the latter and changed it to a higher value.
Original:
LDR R3, =(dword_8C46D0 - 0x3DBCDA)
When i tried to rename the address name to:
dword_8C43D4
I received the following error message:
Can't rename byte as 'dword_8C43D4' because the name has a reserved prefix.
So, what are these reserved prefixes and how do i tackle this problem?
Also, where can i get the short and informative tutorials for learning disassembly using ida pro?