

		static void storeCardDigits(void) using 1
		{
			--
			-- function code
			--
		}

		static void extention_status(void) using 1
		{
			--
			-- function code
			--
		}

		static void dtmfRead(void) using 1
		{
			unsigned char i;

			for(i=0; i<8; i++)
			{
				--
				-- function code
				--
			}
			--
			-- function code
			--
		}

		static void updateTones(void) using 1
		{
			unsigned char i;

			for(i=0; i<15; i++)
			{
				switch(tone_type)
				{
					--
					-- 12-15 cases code
					-- 
				}
			}
			--
			-- function code
			--
		}

		static void onTimerISR(void) interrupt 1 using 1
		{
			extention_status();
			----
			----
			storeCardDigits();
			----
			----
			dtmfRead();
			----
			----
			updateTones();
		}
