From b7cf0602fd08f6a367d42f0b6adadb8322b3d35d Mon Sep 17 00:00:00 2001 From: Alan Korr Date: Sun, 21 Apr 2002 12:21:14 +0000 Subject: removing all that stuff permanently. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@159 a1c6a512-1295-4272-9138-f99709370657 --- firmware/test/memory/test.l | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 firmware/test/memory/test.l (limited to 'firmware/test/memory/test.l') diff --git a/firmware/test/memory/test.l b/firmware/test/memory/test.l deleted file mode 100644 index 7b938e9330..0000000000 --- a/firmware/test/memory/test.l +++ /dev/null @@ -1,23 +0,0 @@ -%{ -#include "test.tab.h" -#define YY_INPUT(buf,result,max_size) \ - result = read_input (buf,max_size); -%} - -%s GETNUMBER - -%% - -[0-9]+ { yylval = atoi(yytext); return NUMBER;} - -"a"|"allocate" { BEGIN GETNUMBER; return ALLOCATE; } -"r"|"release" { BEGIN GETNUMBER; return RELEASE; } -"s"|"spy" { BEGIN GETNUMBER; return SPY; } -"c"|"check" { BEGIN GETNUMBER; return CHECK; } -"i"|"init" { return INIT; } -"d"|"dump" { return DUMP; } -"q"|"quit" { return QUIT; } -[ \t] ; -\n|. { BEGIN 0; return yytext[0]; } -%% - -- cgit v1.2.3