DELPHI AREA
MESSAGE BOARD
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

i need to convert a pascal code to delphi..please help

 
   Reply to topic    DELPHI AREA Forum Index -> Delphi Programming
View previous topic :: View next topic  
Author Message
bahadir
Member


Joined: 09 Nov 2003
Posts: 1
Location: Trurkey

PostPosted: 09/11/03 15:41    Post subject: i need to convert a pascal code to delphi..please help Reply with quote

hi
i have a pascal code written below..is there anyone can change this code to delphi? i cannot find the matching command of 'inline'. this procedure uses to send command to an external device by i/o card.
thanx
////// here is the procedure to be concerted to delphi ///////

Procedure ieinit(ioport,myaddr,setting:integer);
begin inline ($9A/$00/$04/$00/$D0); end; { call D000:0400 }

///// End of the procedure /////

_________________
the answer is on the box
Back to top
View user's profile Send e-mail Visit poster's website
Kambiz
Administrator


Joined: 07 Mar 2003
Posts: 306

PostPosted: 09/11/03 17:09    Post subject: Reply with quote

Code:
procedure ieinit(ioport, myaddr, setting :integer);
asm
  DB $9A
  DB $00
  DB $04
  DB $00
  DB $D0
end;
Back to top
View user's profile Send e-mail Visit poster's website
Kambiz
Administrator


Joined: 07 Mar 2003
Posts: 306

PostPosted: 09/11/03 17:12    Post subject: Reply with quote

By the way, I guess the former program was a DOS, so it should not work on Windows.
Back to top
View user's profile Send e-mail Visit poster's website
Display posts from previous:   
   Reply to topic    DELPHI AREA Forum Index -> Delphi Programming All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB 2.0.6 © 2001, 2002 phpBB Group