LF: PASCAL => TI92 !!!!!!!!!


[Prev][Next][Index][Thread]

LF: PASCAL => TI92 !!!!!!!!!



Hi !

I wrote a program to convert Pascal files into TI92 programs. My version 1.1
is now available. Now it converts functions, too.

The program is at the following structure :

Program test;
uses crt;

function f(c,d:Integer);
begin
 f:=a;
end;

var a,b,c,d,result : Integer;

begin
a:=3;
for b:=1 to 5 
 do begin
 for c:=1 to 5
   do begin
   b:=b+c;
  end;
 a:=a+b;
 end;   
if (a>1000)
then begin
result:=4;
end;
end.

There are two little problems with converting the output, but I'll fix it
this week.I did not manage to convert some frequently used expressions yet, 
but I'll fix that soon.             

If anyone is interrested in this converter I am working on. Please send me an
EMAIL to Juergen.Schultz@fh-Zwickau.de where you can get the release 1.1.

PS.: Can anyone tell me where to get the RAM upgrade in Germany ????

Juergen


Follow-Ups: