At 02:20 AM 11/10/96 -0200, you wrote: >I'll like to expand my previous answer to Jacob, as follows; > >I am using PDE 2.06 / PCM CCS V2.238 / clearview XX with 16C74 module. > >sorry for my precipitate previous answer. > >juan abba > >At 08:50 PM 11/9/96 +0200, you wrote: >>At 03:19 PM 11/9/96 -0200, you wrote: >>>Hi; >>> Using CCS C compiler, I am able to work with short and long integer. >>> PDE watch window appears to me that only accepts short integers. >>>Does anybody know how to display a long as a long integer or at least to >>>display (watch window) the lo and hi part separate.??? >>>juan >>> Hi I had similar problem with a 57, in my case it was displaying registers from bank 0 only - properly. is your integer in bank 0 ? if not, what happens when you transfer it to bank 0 ? in the following program I HAD a problem with test2. in the watch window test2 and test1 had same value. the following program WORKS !! try something similar DEVICE PIC16C57,xt_osc,wdt_on test1 equ 18h ; test2 equ 18h ;<----- 58h ORG 58h _test2 ds 1 ;<-------58h org 0h start clrf fsr clrf test1 loop incf test1 setb fsr.6 mov _test2,#3 clrf fsr jmp loop reset start END jacob