Re: [fpc-devel] FPC and Z80

2020-06-09 Thread Sven Barth via fpc-devel
PopolonY2K schrieb am Mi., 10. Juni 2020, 00:38: > Thank you. > > My library is very complete, 100% MSXBIOS, MSXDOS and MSXDOS2, Memory > mapper and several others implementations ready, but they are working just > with TP3. > > Features like Inline code are provided by FPC by using Asm/EndAsm. >

Re: [fpc-devel] FPC and Z80

2020-06-09 Thread PopolonY2K
Thank you. My library is very complete, 100% MSXBIOS, MSXDOS and MSXDOS2, Memory mapper and several others implementations ready, but they are working just with TP3. Features like Inline code are provided by FPC by using Asm/EndAsm. But how to deal with absolute variables in FPC ? I think in ol

Re: [fpc-devel] ConsoleIO and flushing buffered output

2020-06-09 Thread Christo Crause via fpc-devel
On Tue, Jun 9, 2020 at 3:19 PM wrote: > On 6/9/20 2:55 AM, Christo Crause via fpc-devel wrote: > > for c := 'A' to 'Z" do write(c); > > oops! i failed to note that the above is character by character whereas > what i > spoke of in my previous post is line by line :/ > Indeed, the first modificat

Re: [fpc-devel] ConsoleIO and flushing buffered output

2020-06-09 Thread Christo Crause via fpc-devel
On Tue, Jun 9, 2020 at 10:55 AM Tomas Hajny wrote: > Note that there is an (intended) difference between output to console > and output to files (Do_IsDevice provides this differentiation in > standard RTL). Output to console is supposed to be flushed after every > Write(Ln) statement, because it

Re: [fpc-devel] FPC and Z80

2020-06-09 Thread Sven Barth via fpc-devel
PopolonY2K schrieb am Di., 9. Juni 2020, 16:03: > Thanks. > > I'll start porting all Turbo Pascal 3 library compatible, to FPC using > units. > Great! If you find any problems, please don't hesitate to report them either here or on the bugtracker at bugs.freepascal.org :) And if you have any que

Re: [fpc-devel] FPC and Z80

2020-06-09 Thread PopolonY2K
Thanks. I'll start porting all Turbo Pascal 3 library compatible, to FPC using units. Regards Leidson Campos. Em 7 de junho de 2020 09:39:43 BRT, Sven Barth via fpc-devel escreveu: >Am 16.04.2020 um 11:04 schrieb Guillermo: >> Thanks Swen. >> >> I see last commit was 2 days ago so it is active

Re: [fpc-devel] ConsoleIO and flushing buffered output

2020-06-09 Thread wkitty42
On 6/9/20 2:55 AM, Christo Crause via fpc-devel wrote: for c := 'A' to 'Z" do write(c); oops! i failed to note that the above is character by character whereas what i spoke of in my previous post is line by line :/ -- NOTE: No off-list assistance is given without prior approval. *Pl

Re: [fpc-devel] ConsoleIO and flushing buffered output

2020-06-09 Thread wkitty42
On 6/9/20 2:55 AM, Christo Crause via fpc-devel wrote: I will of course submit a patch once I'm satisfied it is good enough.  My concern with the current patch is that a low level flush is called after every write statement, so a simple loop like the following: for c := 'A' to 'Z" do write(c);

Re: [fpc-devel] ConsoleIO and flushing buffered output

2020-06-09 Thread Tomas Hajny
On 2020-06-09 08:55, Christo Crause via fpc-devel wrote: On Tue, Jun 9, 2020 at 12:03 AM Michael Van Canneyt wrote: Could you please submit a patch with this modification to the bugtracker ? We don't as a rule follow up on such things in github. I will of course submit a patch once I'm s