Hello i am writing an array of asci char to memory and need to check they are in the correct position when in debug mode MOV A,#030H MOV R1,#060H MOV @R1,A ARRAY: INC A INC R1 CJNE A,#03AH,ARRAY I am very new to this and i cannot seem to find a way to view the data in a mem window. help would be most appeciated
chris
In the Memory Window in the Address field, type something like X: 0x0108 for XDATA or C: 0x0060 for CODE space or D: 0x0020 for DATA space. Also, you should WORK through the "Getting Started" manual for these types of examples. Bradford
I should have added, view the MAP file for the address field of the code/data that you wish to display. Bradford
Hi AL thanks so much for this D:0xoo50 worked. so pleased once again thankyou