Re: [fpc-pascal] location modifier

2016-01-18 Thread Sven Barth
Am 18.01.2016 18:19 schrieb "Karoly Balogh (Charlie/SGR)" < char...@scenergy.dfmk.hu>: > > Hi, > > On Mon, 18 Jan 2016, Sven Barth wrote: > > > Am 18.01.2016 17:00 schrieb "Karoly Balogh (Charlie/SGR)" < char...@scenergy.dfmk.hu>: > > > In the future, I plan to reuse syscalls and the location > > >

Re: [fpc-pascal] location modifier

2016-01-18 Thread Karoly Balogh (Charlie/SGR)
Hi, On Mon, 18 Jan 2016, Sven Barth wrote: > Am 18.01.2016 17:00 schrieb "Karoly Balogh (Charlie/SGR)" > : > > In the future, I plan to reuse syscalls and the location > > syntax for a possible Atari port too. > > Who are you and what have you done with Charlie? :P Haha! :D I have eaten him! :D

Re: [fpc-pascal] location modifier

2016-01-18 Thread Sven Barth
Am 18.01.2016 17:00 schrieb "Karoly Balogh (Charlie/SGR)" < char...@scenergy.dfmk.hu>: > In the future, I plan to reuse syscalls and the location > syntax for a possible Atari port too. Who are you and what have you done with Charlie? :P Regards, Sven _

Re: [fpc-pascal] location modifier

2016-01-18 Thread Mattias Gaertner
On Mon, 18 Jan 2016 16:59:49 +0100 (CET) "Karoly Balogh (Charlie/SGR)" wrote: >[...] > And there's no need to take educated guesses, it's all documented in the > wiki: > > http://wiki.freepascal.org/Amiga#Introduction_to_SysCalls > http://wiki.freepascal.org/MorphOS#Introduction_to_SysCalls > >

Re: [fpc-pascal] location modifier

2016-01-18 Thread Mattias Gaertner
On Mon, 18 Jan 2016 16:40:17 +0100 (CET) Michael Van Canneyt wrote: > > > On Mon, 18 Jan 2016, Mattias Gaertner wrote: > > > Hi, > > > > I can't find the 'location' modifier in the docs. Is it missing? > > I didn't even know this modifier existed. > Let alone that I know what it does > (a

Re: [fpc-pascal] location modifier

2016-01-18 Thread Karoly Balogh (Charlie/SGR)
Hi, On Mon, 18 Jan 2016, Mattias Gaertner wrote: > I can't find the 'location' modifier in the docs. Is it missing? > > For example: > > function bsd_socket(Domain: LongInt location 'd0'; Type_: LongInt > location 'd1'; Protocol: LongInt location 'd2'): LongInt; syscall > SocketBase 30; > > See f

Re: [fpc-pascal] location modifier

2016-01-18 Thread Michael Van Canneyt
On Mon, 18 Jan 2016, Mattias Gaertner wrote: Hi, I can't find the 'location' modifier in the docs. Is it missing? I didn't even know this modifier existed. Let alone that I know what it does (although I can take an educated guess) Michael. __

[fpc-pascal] location modifier

2016-01-18 Thread Mattias Gaertner
Hi, I can't find the 'location' modifier in the docs. Is it missing? For example: function bsd_socket(Domain: LongInt location 'd0'; Type_: LongInt location 'd1'; Protocol: LongInt location 'd2'): LongInt; syscall SocketBase 30; See for example packages/rtl-extra/src/amiga/sockets.pp Mattias _