Nov 15, 2006 #1 L lcs81 Member level 3 Joined Aug 2, 2005 Messages 57 Helped 0 Reputation 0 Reaction score 0 Trophy points 1,286 Activity points 1,683 Am, how actualy pointer work? Is there any related notes from simple pointer to advance pointer? In microcontroller, do we use pointer?
Am, how actualy pointer work? Is there any related notes from simple pointer to advance pointer? In microcontroller, do we use pointer?
Nov 15, 2006 #2 budhy Advanced Member level 3 Joined Oct 21, 2006 Messages 823 Helped 218 Reputation 436 Reaction score 32 Trophy points 1,308 Location Indonesia Activity points 5,225 Re: pointer how actualy pointer work? Is there any related notes from simple pointer to advance pointer? Click to expand... C Programming Tutorial: Pointers http://vergil.chemistry.gatech.edu/resources/programming/c-tutorial/pointers.html In microcontroller, do we use pointer? Click to expand... Yes, any microcontroller use pointer, this pointer operation normally named as indirect addressing. Code: 8051 : MOVX A,@DPTR Z80 : LD A,(HL) 68xx : LDAA 0,X AVR see Beginners Programming in AVR Assembler - Register as Pointer http://www.avr-asm-tutorial.net/avr_en/beginner/REGISTER.html#Pointer
Re: pointer how actualy pointer work? Is there any related notes from simple pointer to advance pointer? Click to expand... C Programming Tutorial: Pointers http://vergil.chemistry.gatech.edu/resources/programming/c-tutorial/pointers.html In microcontroller, do we use pointer? Click to expand... Yes, any microcontroller use pointer, this pointer operation normally named as indirect addressing. Code: 8051 : MOVX A,@DPTR Z80 : LD A,(HL) 68xx : LDAA 0,X AVR see Beginners Programming in AVR Assembler - Register as Pointer http://www.avr-asm-tutorial.net/avr_en/beginner/REGISTER.html#Pointer