/*
 * task1 - task for os
 *
 * $Id: task1.c,v 1.6 2002/07/30 22:36:45 tomdean Exp $
 */

#include <sys/ports_def.h>
#include <os.h>
#include <libeeprom.h>      /* eeprom functions */
#include <lcd.h>

unsigned char stack1[STACK_SIZE];

void task1() {
  register unsigned short loop_count = 0;
  
  while (1) {
	hex_to_ascii_4(++loop_count, TASK1_COUNT);
	SYS_DONE();
  }
}
