??? 12/23/04 11:35 Read: times |
#83694 - Re Responding to: ???'s previous message |
002F 75B8E9 16 mov ip,#00001001 ; timer0 leve2,timer1 level1 *** ________________________________^ *** ERROR #53, LINE #16, VALUE HAS BEEN TRUNCATED TO 8 BITS You try to set bit 0 and bit 12 (which not exist) and thus an error was generated. But you never set bit 1 of IP, which defines the priority level of T0. mov IP, #2 should solve your problem. Peter |