Re: [Freedos-devel] Ideas

2018-07-12 Thread Eric Auer
Hi Ercan, > FreeQB: > FreeQB is replacement for Microsoft QBASIC. FreeQB is > QBASIC.EXE for FreeDOS and compatible QBASIC. It may > run 8086 and low memory. A GOOD BASIC is hard to write! I recommend to use the existing FreeBASIC and support their efforts towards a good IDE for it and

Re: [Freedos-devel] Ideas

2018-07-08 Thread Ercan Ersoy
I'm confused. I thought *you* were proposing to write a FreeQB. Are you not? Sounds like you are instead asking others to write it for you? I can't write entire FreeQB now. But, I can create a repository on GitHub and GitLab for FreeQB. If people will help to me, I can write some code for

Re: [Freedos-devel] Ideas

2018-07-07 Thread Jim Hall
On Fri, Jul 6, 2018 at 9:16 PM, Mercury Thirteen via Freedos-devel < freedos-devel@lists.sourceforge.net> wrote: > ​[..] > Chelson and his team was working on the DOSCore > project a while back which > gave a GUI for DOS based systems. I thought it was

Re: [Freedos-devel] Ideas

2018-07-07 Thread Jim Hall
On Sat, Jul 7, 2018 at 12:49 PM, Ercan Ersoy wrote: > > I, for one, would personally love to see FreeQB. Even if it only converted >> BASIC to assembly and relied on NASM for compiling, it would be a welcome >> addition to the FreeDOS family. The language could even be extended with >> several

Re: [Freedos-devel] Ideas

2018-07-07 Thread Mark Olesen
You may want to rip the logic from: https://sourceforge.net/projects/flcalc/ On Sat, Jul 7, 2018 at 4:16 PM, Jim Hall wrote: > Sort of a simplified version of GNU bc, then? I think that would be really > interesting. > > I hadn't used ACALC before, but looking it up online, it's a simple >

Re: [Freedos-devel] Ideas

2018-07-07 Thread Jim Hall
Sort of a simplified version of GNU bc, then? I think that would be really interesting. I hadn't used ACALC before, but looking it up online, it's a simple command line calculator: ACALC {expression} Where {expression} is add, subtract, multiply, divide, modulo .. and various functions like

Re: [Freedos-devel] Ideas

2018-07-07 Thread Steve Nickolas
To me, if there should be a FreeDOS calculator, it might be reasonable to copy the interface of ACALC from PC DOS 7, because PC DOS 7 is basically the next step past MS-DOS 6.22 (IMO). -uso. -- Check out the vibrant

Re: [Freedos-devel] Ideas

2018-07-07 Thread Mateusz Viste
On Sat, 07 Jul 2018 12:51:46 -0500, David McMackins wrote: > Is FoxCalc not 16-bit? No, it's not. It's a protected mode application, ie. requires a 386 CPU. Mateusz -- FreeDOS is present on the USENET, too! alt.os.free-dos

Re: [Freedos-devel] Ideas

2018-07-07 Thread Ercan Ersoy
Is FoxCalc not 16-bit? No, FoxCalc is 32-bit. Best regards, Ercan -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot

Re: [Freedos-devel] Ideas

2018-07-07 Thread David McMackins
On 07/07/2018 12:49 PM, Ercan Ersoy wrote: > I think FreeDOS needs a 16 bit calculator program. Is FoxCalc not 16-bit? Happy Hacking, David E. McMackins II Supporting Member, Electronic Frontier Foundation (#2296972) Associate Member, Free Software Foundation (#12889) www.mcmackins.org

Re: [Freedos-devel] Ideas

2018-07-07 Thread Ercan Ersoy
I, for one, would personally love to see FreeQB. Even if it only converted BASIC to assembly and relied on NASM for compiling, it would be a welcome addition to the FreeDOS family. The language could even be extended with several features found in other BASICs, such as PowerBASIC. I

Re: [Freedos-devel] Ideas

2018-07-06 Thread Mercury Thirteen via Freedos-devel
I, for one, would personally love to see FreeQB. Even if it only converted BASIC to assembly and relied on NASM for compiling, it would be a welcome addition to the FreeDOS family. The language could even be extended with several features found in other BASICs, such as PowerBASIC. I began a

[Freedos-devel] Ideas

2018-07-06 Thread Ercan Ersoy
Hello, I have a few ideas. FreeQB: FreeQB is replacement for Microsoft QBASIC. FreeQB is QBASIC.EXE for FreeDOS and compatible QBASIC. It may run 8086 and low memory. This software may be written write C++ and FDOSTUI Library. FreeDOS Calculator: A calculator for FreeDOS. This software may be

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-11 Thread Ladislav Lacina
registers work as stacks so no confusion whether read or not read can't occur. - Original Message - From: Tony G [EMAIL PROTECTED] To: freedos-devel@lists.sourceforge.net Sent: Tuesday, April 10, 2007 10:37 PM Subject: Re: [Freedos-devel] ideas about FreeDOS resident calculator I still

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-11 Thread Eric Auer
Hi, well, honestly, I think the most in style way to have an API for FDRC would be to have a way to send strings like 4+sqrt(2) to the calculator and receive a string with the result. Maybe with some extra functions like round(2, 4+sqrt(2)) which would return 5.41 and hex(42) (returns 2a) and

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-11 Thread tom ehlert
Hi, well, honestly, I think there's absolutely no use for an API for FDRC. make the CalcResultFromString portion of FDRC a separate source, linkable to every program that likes to have a calculator. Mit freundlichen Grüßen / Kind regards, Tom Ehlert +49-241-79886

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-11 Thread Ladislav Lacina
Yes, exactly. We need only few functions: * check whether is driver present * compute matematical expression (*) set precision for floating point numbers (*) some extra function for operations like arithmetical mean - Take

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-11 Thread Aitor Santamaría
I support this idea too, and for the operators, let me suggest using C-style ones, given the big amount of C-compatible languages, not only C/C++ but also Java, ecma-script and derivatives, etc. I am not saying to support them all: - there's no sense for =, +=, -=, etc, unless you implement some

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-10 Thread Oleg O. Chukaev
Ladislav Lacina wrote: FDRC is nice and comfortable. But you could go further. Now is the TSR module called by hotkey. What about making a alternate interface through some interrupt? Now FDRC serves to users but if you would make some API let's say on 2Fh DOS multiplex it could serve to

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-10 Thread Ladislav Lacina
in memory). Which functions should be available via INT 2f except these? Maybe conversions from/to another number representation systems. 255dec = FFh = b - Take Surveys. Earn Cash. Influence the Future of IT

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-10 Thread Tony G
@lists.sourceforge.net Sent: Tuesday, April 10, 2007 1:16 PM Subject: Re: [Freedos-devel] ideas about FreeDOS resident calculator Ladislav Lacina wrote: FDRC is nice and comfortable. But you could go further. Now is the TSR module called by hotkey. What about making a alternate interface through some interrupt? Now

[Freedos-devel] ideas about FreeDOS resident calculator

2007-04-07 Thread Ladislav Lacina
FDRC is nice and comfortable. But you could go further. Now is the TSR module called by hotkey. What about making a alternate interface through some interrupt? Now FDRC serves to users but if you would make some API let's say on 2Fh DOS multiplex it could serve to programmers also. I would like

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-07 Thread Johnson Lam
On Sat, 7 Apr 2007 13:38:57 +0200, you wrote: This all is needed because Blo?ek works in VESA graphics mode so the dialog window of FDRC can't be displayed. I wonder nowadays display card still have support of VESA or not. UNIVBE refuse to work long ago, and other free VESA drivers stopped

Re: [Freedos-devel] ideas about FreeDOS resident calculator

2007-04-07 Thread Tony
are part of the FDRC published under the ... license. - Original Message - From: Ladislav Lacina To: freedos-devel@lists.sourceforge.net Sent: Saturday, April 07, 2007 7:38 AM Subject: [Freedos-devel] ideas about FreeDOS resident calculator FDRC is nice and comfortable