head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2006.06.01.01.12.05;	author nachumk;	state Exp;
branches;
next	;
commitid	5b5f447e3e8f4567;


desc
@@


1.1
log
@1st version.
View readme.txt to see available features and current limitations.
@
text
@#wait for interrupt thread to do initialization
PARAMETERS STRING outfile
WAIT 30 ns
CLEAR outfile

WHILE

	WAIT 3 us

	#check if data received interrupt
	vector8 tmp = int0shadow
	tmp &= 00000010
	IF tmp == 00000010
	int0shadow &= 11111101
	READ 00010111 tmp
	PRINT outfile tmp
	IF_END

WHILE_END
@
